1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- class ElggWire extends ElggObject {
-
- protected function initializeAttributes() {
- parent::initializeAttributes();
- $this->attributes['subtype'] = 'thewire';
- }
-
- public function canComment($user_guid = 0) {
- $result = parent::canComment($user_guid);
- if ($result == false) {
- return $result;
- }
- return false;
- }
- }
|