openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 59fe934620c01e26510c1afb762a0e4f1aedd1a6
parent 9b482cd45b30c63133712d9f40d5c603c9f88a35
Author: Jan Dankert <devnull@localhost>
Date:   Wed, 14 Nov 2018 22:34:18 +0100

toString()-Methode für einfachere Fehleranalysen.

Diffstat:
modules/cms-core/model/BaseObject.class.php | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/cms-core/model/BaseObject.class.php b/modules/cms-core/model/BaseObject.class.php @@ -1411,7 +1411,10 @@ SQL } - + public function __toString() + { + return 'Object-Id '.$this->objectid.' (type='.$this->getType().',filename='.$this->filename.',language='.$this->languageid.', modelid='.$this->modelid.')'; + } }