ElggDiscussionReply.php 326 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Class for group discussion reply
  4. *
  5. * We extend ElggComment to get the future thread support.
  6. */
  7. class ElggDiscussionReply extends ElggComment {
  8. /**
  9. * Set subtype
  10. */
  11. protected function initializeAttributes() {
  12. parent::initializeAttributes();
  13. $this->attributes['subtype'] = "discussion_reply";
  14. }
  15. }