From f5c0093da9c466df97e0049b4dc4251e12f04faf Mon Sep 17 00:00:00 2001 From: icewing Date: Fri, 23 May 2008 10:38:02 +0000 Subject: Marcus Povey * System log event code git-svn-id: https://code.elgg.org/elgg/trunk@691 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'engine/lib/entities.php') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 7ce4047bb..674a6a8fe 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -22,6 +22,7 @@ abstract class ElggEntity implements Exportable, // Allow export of data Importable, // Allow import of data + Loggable, // Can events related to this object class be logged Iterator, // Override foreach behaviour ArrayAccess // Override for array access { @@ -533,6 +534,21 @@ return true; } + + // SYSTEM LOG INTERFACE //////////////////////////////////////////////////////////// + + /** + * Return an identification for the object for storage in the system log. + * This id must be an integer. + * + * @return int + */ + public function getSystemLogID() { return $this->getGUID(); } + + /** + * Return the class name of the object. + */ + public function getClassName() { return get_class($this); } // ITERATOR INTERFACE ////////////////////////////////////////////////////////////// /* -- cgit v1.2.3