コード例 #1
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->assign("title", "Dashboard");
 }
コード例 #2
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->person = new PersonModel();
 }
コード例 #3
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->c = new CustomerData();
 }
コード例 #4
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->e = new EmployeeModel();
 }
コード例 #5
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
 }
コード例 #6
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->assign("title", "Rechnungen");
     $this->i = new InvoiceModel();
 }
コード例 #7
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->assign("title", "Rechnungen");
 }
コード例 #8
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->p = new ProjectModel();
 }
コード例 #9
0
ファイル: Router.php プロジェクト: xama5/uver-erp
 public function __construct()
 {
     parent::__construct();
     $this->form = array("email" => array("error" => false, "value" => $_POST["email"]), "password" => array("error" => false, "value" => ""), "password_verify" => array("error" => false, "value" => ""), "company" => array("error" => false, "value" => $_POST["company"]), "firstname" => array("error" => false, "value" => $_POST["firstname"]), "lastname" => array("error" => false, "value" => $_POST["lastname"]), "street" => array("error" => false, "value" => $_POST["street"]), "zip" => array("error" => false, "value" => $_POST["zip"]), "city" => array("error" => false, "value" => $_POST["city"]), "country" => array("error" => false, "value" => $_POST["country"]));
 }