Exemple #1
0
 public function __construct()
 {
     parent::__construct();
     $this->assign("title", "Dashboard");
 }
Exemple #2
0
 public function __construct()
 {
     parent::__construct();
     $this->person = new PersonModel();
 }
Exemple #3
0
 public function __construct()
 {
     parent::__construct();
     $this->c = new CustomerData();
 }
Exemple #4
0
 public function __construct()
 {
     parent::__construct();
     $this->e = new EmployeeModel();
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct();
 }
Exemple #6
0
 public function __construct()
 {
     parent::__construct();
     $this->assign("title", "Rechnungen");
     $this->i = new InvoiceModel();
 }
Exemple #7
0
 public function __construct()
 {
     parent::__construct();
     $this->assign("title", "Rechnungen");
 }
Exemple #8
0
 public function __construct()
 {
     parent::__construct();
     $this->p = new ProjectModel();
 }
Exemple #9
0
 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"]));
 }