コード例 #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
ファイル: dashboard.php プロジェクト: SerdarSanri/gotin
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
 }