123456789101112131415161718 |
- <?php
- /**
- * Class for group discussion reply
- *
- * We extend ElggComment to get the future thread support.
- */
- class ElggDiscussionReply extends ElggComment {
- /**
- * Set subtype
- */
- protected function initializeAttributes() {
- parent::initializeAttributes();
- $this->attributes['subtype'] = "discussion_reply";
- }
- }
|