コード例 #1
0
ファイル: comment.php プロジェクト: Ethan0814/STBlog
 /**
  * 解析函数
  * 
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->load->library('form_validation');
     log_message('debug', 'STBLOG: Comment Controller initialized.');
 }
コード例 #2
0
ファイル: posts.php プロジェクト: Ethan0814/STBlog
 /**
  * 构造函数
  * 
  * @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) . '/';
 }