コード例 #1
0
ファイル: Check.php プロジェクト: liningwang/camera-beijing
 public function __init()
 {
     parent::__init();
     $this->_printHeader();
 }
コード例 #2
0
ファイル: Db.php プロジェクト: LWFeng/hush
 public function __init()
 {
     parent::__init();
     $this->_printHeader();
     $this->db_config = new MysqlConfig();
 }
コード例 #3
0
ファイル: Doc.php プロジェクト: liningwang/camera-beijing
 /**
  * Document cli class instruction
  * @return void
  */
 public function helpAction()
 {
     parent::__init();
     $this->_printHeader();
     echo "hush doc build\n";
 }
コード例 #4
0
ファイル: Sys.php プロジェクト: showhand90/hush-framework
 public function __init()
 {
     parent::__init();
     $this->init_sql_be = realpath(__ROOT . '/doc/sql/ihush_core.sql');
     $this->init_sql_fe = realpath(__ROOT . '/doc/sql/ihush_apps.sql');
 }