diff options
Diffstat (limited to 'mod/thewire/classes/ElggWire.php')
-rw-r--r-- | mod/thewire/classes/ElggWire.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/mod/thewire/classes/ElggWire.php b/mod/thewire/classes/ElggWire.php new file mode 100644 index 000000000..d864cc259 --- /dev/null +++ b/mod/thewire/classes/ElggWire.php @@ -0,0 +1,34 @@ +<?php +/** + * ElggWire Class + */ +class ElggWire extends ElggObject { + + /** + * Set subtype to thewire. + */ + protected function initializeAttributes() { + parent::initializeAttributes(); + + $this->attributes['subtype'] = 'thewire'; + } + + /** + * Can a user comment on this wire post? + * + * @see ElggObject::canComment() + * + * @param int $user_guid User guid (default is logged in user) + * @return bool + * @since 1.8.0 + */ + public function canComment($user_guid = 0) { + $result = parent::canComment($user_guid); + if ($result == false) { + return $result; + } + + return false; + } + +} |