/** * コンストラクタ */ public function __construct(&$core, $code) { parent::__construct($core, $code); // ロガーを開く $name = 'action.' . $this->_code; $this->_log = new CampaignLogger($this->_core, $name); }
/** * コンストラクタ */ 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(); }