Example #1
0
 /**
  * AmazonSearch の初期化
  * 
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $_ = $this;
     $_->params = AmazonApiKey::getParams();
     $_->secretKey = $_->params['secret_key'];
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $_ = $this;
     CmdLibs::setDataBridge();
     $_->initView();
 }
Example #3
0
 /**
  * 初期化
  */
 public function __construct()
 {
     $_ = $this;
     parent::__construct();
     // viewの初期化
     $_->initView();
 }
Example #4
0
 /**
  * コンストラクタ。
  *
  */
 public function __construct()
 {
     $_ = $this;
     parent::__construct();
     if (!isset($_SESSION[$_->SESSION_NAME])) {
         $_->clear();
     }
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $_ = $this;
     $_->APP_ROOT = CmdLibs::getAppRoot(1);
     $_->initView();
     echo "\nmake Model Class file.\n\n";
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     $_ = $this;
     $_->APP_ROOT = CmdLibs::getAppRoot(1);
     $_->initView();
     echo "\nmake table Class file from database;.\n\n";
 }
Example #7
0
 /**
  * コンストラクタ。
  *
  * @param array $rule 検証&フィルタ設定
  *
  */
 public function __construct($rule)
 {
     parent::__construct();
     $_ = $this;
     Validator\LIVR::defaultAutoTrim(true);
     // 検証&フィルタの設定
     $_->validator = new Validator\LIVR($rule);
     // カスタム検証ルール/フィルタの登録
     $_->registValidator();
 }
Example #8
0
 /**
  * ExcelModel の初期化
  * 
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $_ = $this;
     $_->Excel = new ExcelWriter();
 }
Example #9
0
 /**
  * 初期化
  *
  */
 public function __construct()
 {
     ini_set('memory_limit', '256M');
     parent::__construct();
 }
Example #10
0
 public function __construct()
 {
     parent::__construct();
 }
Example #11
0
 public function __construct()
 {
     parent::__construct();
     CmdLibs::setDataBridge();
 }
Example #12
0
 public function __construct()
 {
     parent::__construct();
     //echo "\nmake DB Class File.\n\n";
 }
Example #13
0
 public function __construct()
 {
     parent::__construct();
     CmdLibs::bannerBig("make List Controller and View.");
     echo "LOCAL_TEST_SERVER=" . $this->C['LOCAL_TEST_SERVER'] . "\n";
 }