You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.2 KiB
72 lines
2.2 KiB
2 years ago
|
<?php
|
||
|
|
||
|
class C_InsuranceCompany extends Controller
|
||
|
{
|
||
|
var $template_mod;
|
||
|
var $icompanies;
|
||
|
|
||
|
function __construct($template_mod = "general")
|
||
|
{
|
||
|
parent::__construct();
|
||
|
$this->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'] = "";
|
||
|
}
|
||
|
}
|