예제 #1
0
파일: roles.php 프로젝트: SerdarSanri/gotin
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->flash = Session::get('form_errors');
     $this->data = new stdClass();
     $this->data->name = "";
     $this->data->description = "";
 }
예제 #2
0
파일: users.php 프로젝트: SerdarSanri/gotin
 /**
  * Construct
  */
 public function __construct()
 {
     parent::__construct();
     $this->flash = Session::get('form_errors');
     // empty default user object to pass to the adduser view
     $this->data = new stdClass();
     $this->data->email = "";
     $this->data->username = "";
 }
예제 #3
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
 }