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