icompanies = array(); $this->template_mod = $template_mod; $this->assign("FORM_ACTION", $GLOBALS['webroot'] . "/controller.php?" . attr($_SERVER['QUERY_STRING'])); $this->assign("CURRENT_ACTION", $GLOBALS['webroot'] . "/controller.php?" . "practice_settings&insurance_company&"); $this->assign("STYLE", $GLOBALS['style']); $this->InsuranceCompany = new InsuranceCompany(); } function default_action() { return $this->list_action(); } function edit_action($id = "", $patient_id = "", $p_obj = null) { if ($p_obj != null && get_class($p_obj) == "insurancecompany") { $this->icompanies[0] = $p_obj; } elseif (get_class($this->icompanies[0]) != "insurancecompany") { $this->icompanies[0] = new InsuranceCompany($id); } $this->assign("insurancecompany", $this->icompanies[0]); return $this->fetch($GLOBALS['template_dir'] . "insurance_companies/" . $this->template_mod . "_edit.html"); } function list_action($sort = "") { if (!empty($sort)) { $this->assign("icompanies", $this->InsuranceCompany->insurance_companies_factory("", $sort)); } else { $this->assign("icompanies", $this->InsuranceCompany->insurance_companies_factory()); } return $this->fetch($GLOBALS['template_dir'] . "insurance_companies/" . $this->template_mod . "_list.html"); } function edit_action_process() { if ($_POST['process'] != "true") { return; } //print_r($_POST); if (is_numeric($_POST['id'])) { $this->icompanies[0] = new InsuranceCompany($_POST['id']); } else { $this->icompanies[0] = new InsuranceCompany(); } parent::populate_object($this->icompanies[0]); //print_r($this->pharmacies[0]); //echo $this->pharmacies[0]->toString(true); $this->icompanies[0]->persist(); //echo "action processeed"; $_POST['process'] = ""; } }