aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/ElggExtender.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-01-01 18:30:17 -0500
committerCash Costello <cash.costello@gmail.com>2012-01-01 18:30:17 -0500
commitce691dd8c560abc48aaf578928d13dea6ef31565 (patch)
treefb96923297830f3d92fb3f798c8e7fc37674f061 /engine/classes/ElggExtender.php
parentcfaa3452ae1e6035e5b9ecb668d29330b34499c2 (diff)
downloadelgg-ce691dd8c560abc48aaf578928d13dea6ef31565.tar.gz
elgg-ce691dd8c560abc48aaf578928d13dea6ef31565.tar.bz2
Fixes #3209 finished adding class properties documentation
Diffstat (limited to 'engine/classes/ElggExtender.php')
-rw-r--r--engine/classes/ElggExtender.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/engine/classes/ElggExtender.php b/engine/classes/ElggExtender.php
index d6f79d18d..bc2d67ae2 100644
--- a/engine/classes/ElggExtender.php
+++ b/engine/classes/ElggExtender.php
@@ -3,8 +3,7 @@
* The base class for ElggEntity extenders.
*
* Extenders allow you to attach extended information to an
- * ElggEntity. Core supports two: ElggAnnotation, ElggMetadata,
- * and ElggRelationship
+ * ElggEntity. Core supports two: ElggAnnotation and ElggMetadata.
*
* Saving the extender data to database is handled by the child class.
*
@@ -16,6 +15,14 @@
* @link http://docs.elgg.org/DataModel/Extenders
* @see ElggAnnotation
* @see ElggMetadata
+ *
+ * @property string $type annotation or metadata (read-only after save)
+ * @property int $id The unique identifier (read-only)
+ * @property int $entity_guid The GUID of the entity that this extender describes
+ * @property int $access_id Specifies the visibility level of this extender
+ * @property string $name The name of this extender
+ * @property mixed $value The value of the extender (int or string)
+ * @property int $time_created A UNIX timestamp of when the extender was created (read-only, set on first save)
*/
abstract class ElggExtender extends ElggData
{