extend_thread_base.php 603 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * [Discuz!] (C)2001-2099 Comsenz Inc.
  4. * This is NOT a freeware, use is subject to license terms
  5. *
  6. * $Id: extend_thread_base.php 30673 2012-06-11 07:51:54Z svn_project_zhangjie $
  7. */
  8. if(!defined('IN_DISCUZ')) {
  9. exit('Access Denied');
  10. }
  11. class extend_thread_base extends discuz_extend {
  12. public $forum;
  13. public $thread;
  14. public $post;
  15. public $feed;
  16. public function init_base_var() {
  17. $this->forum = &$this->_obj->forum;
  18. $this->thread = &$this->_obj->thread;
  19. $this->post = &$this->_obj->post;
  20. $this->feed = &$this->_obj->feed;
  21. parent::init_base_var();
  22. }
  23. }
  24. ?>