Files
MermsEmrWeb/providerwww/application/controllers/Patient.php
T
2019-03-02 23:59:36 +00:00

23 lines
523 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Patient extends Provider_Controller {
public function index() {
$data = array();
$this->renderProviderSecurePage('patient/patientreport', $data);
}
public function addnew() {
$data = array();
$this->renderProviderSecurePage('patient/newpatient', $data);
}
public function report() {
$data = array();
$this->renderProviderSecurePage('patient/patientreport', $data);
}
}