__construct() public method

Class constructor
public __construct ( ) : void
return void
コード例 #1
0
ファイル: IGO_Security.php プロジェクト: ci-blox/Ignition-Go
 /**
  * The constructor
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     // Get config value indicating controllers which should be ignored when
     // applying CSRF protection.
     $this->ignored_controllers = config_item('csrf_ignored_controllers');
 }
コード例 #2
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #3
0
ファイル: BF_Security.php プロジェクト: brkrishna/freelance
 /**
  * The constructor
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->ignored_controllers = config_item('csrf_ignored_controllers');
 }
コード例 #4
0
ファイル: EE_Security.php プロジェクト: rmdort/adiee
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->EE =& get_instance();
 }