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