aboutsummaryrefslogtreecommitdiff
path: root/mod
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 /mod
parentcfaa3452ae1e6035e5b9ecb668d29330b34499c2 (diff)
downloadelgg-ce691dd8c560abc48aaf578928d13dea6ef31565.tar.gz
elgg-ce691dd8c560abc48aaf578928d13dea6ef31565.tar.bz2
Fixes #3209 finished adding class properties documentation
Diffstat (limited to 'mod')
-rw-r--r--mod/blog/classes/ElggBlog.php4
-rw-r--r--mod/thewire/classes/ElggWire.php4
2 files changed, 8 insertions, 0 deletions
diff --git a/mod/blog/classes/ElggBlog.php b/mod/blog/classes/ElggBlog.php
index ee2ec73ef..8d4401c57 100644
--- a/mod/blog/classes/ElggBlog.php
+++ b/mod/blog/classes/ElggBlog.php
@@ -1,6 +1,10 @@
<?php
/**
* Extended class to override the time_created
+ *
+ * @property string $status The published status of the blog post (published, draft)
+ * @property string $comments_on Whether commenting is allowed (Off, On)
+ * @property string $excerpt An excerpt of the blog post used when displaying the post
*/
class ElggBlog extends ElggObject {
diff --git a/mod/thewire/classes/ElggWire.php b/mod/thewire/classes/ElggWire.php
index 3242dd5cb..5155a7f97 100644
--- a/mod/thewire/classes/ElggWire.php
+++ b/mod/thewire/classes/ElggWire.php
@@ -1,6 +1,10 @@
<?php
/**
* ElggWire Class
+ *
+ * @property string $method The method used to create the wire post
+ * @property bool $reply Whether this wire post was a reply to another post
+ * @property int $wire_thread The identifier of the thread for this wire post
*/
class ElggWire extends ElggObject {