26 lines
563 B
PHP
Executable File
26 lines
563 B
PHP
Executable File
<?php
|
|
|
|
if (!defined('BASEPATH'))
|
|
exit('No direct script access allowed');
|
|
|
|
class Master extends MX_Controller
|
|
{
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$data=array();
|
|
$data=menu_array();
|
|
|
|
$this->load->view('home/dashboard'); // just the header file
|
|
$this->load->view('masterlist');
|
|
$this->load->view('home/footer'); // just the header file
|
|
}
|
|
|
|
}
|
|
/* End of file doctor.php */
|
|
/* Location: ./application/modules/doctor/controllers/doctor.php */ |