Exemple #1
0
 /**
  * コンストラクタ
  */
 public function __construct(&$core, $code)
 {
     parent::__construct($core, $code);
     // ロガーを開く
     $name = 'index.' . $this->_code;
     $this->_log = new CampaignLogger($this->_core, $name);
 }
Exemple #2
0
 /**
  * コンストラクタ
  */
 public function __construct(&$core, $code)
 {
     parent::__construct($core, $code);
     // ロガーを開く
     $name = 'action.' . $this->_code;
     $this->_log = new CampaignLogger($this->_core, $name);
     // 接続許可IPアドレスを取得
     $this->_allowIP = IllegalAccess::getAllowIPAddressList();
 }