__construct() 공개 메소드

Class constructor
public __construct ( ) : void
리턴 void
예제 #1
0
 /**
  * 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
 /**
  * The constructor
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->ignored_controllers = config_item('csrf_ignored_controllers');
 }
예제 #4
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->EE =& get_instance();
 }