示例#1
0
 /**
  * 解析函数
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->library('form_validation');
     log_message('debug', 'STBLOG: Comment Controller initialized.');
 }
示例#2
0
 /**
  * 构造函数
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
 }
示例#3
0
文件: feed.php 项目: Ethan0814/STBlog
 /**
  * 构造函数
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->library('feedwriter', RSS2);
     $this->_feed_full_text = intval(setting_item('feed_full_text'));
 }
示例#4
0
文件: home.php 项目: Ethan0814/STBlog
 /**
  * 构造函数
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->_uri = $this->uri->segment(1) . '/';
 }