public function __construct() { parent::__construct(); $this->assign("title", "Dashboard"); }
public function __construct() { parent::__construct(); $this->person = new PersonModel(); }
public function __construct() { parent::__construct(); $this->c = new CustomerData(); }
public function __construct() { parent::__construct(); $this->e = new EmployeeModel(); }
public function __construct() { parent::__construct(); }
public function __construct() { parent::__construct(); $this->assign("title", "Rechnungen"); $this->i = new InvoiceModel(); }
public function __construct() { parent::__construct(); $this->assign("title", "Rechnungen"); }
public function __construct() { parent::__construct(); $this->p = new ProjectModel(); }
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"])); }