__construct() public method

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