| Current Path : /var/www/html/mmishra/icure/admin/ |
| Current File : /var/www/html/mmishra/icure/admin/index.php |
<?php
require("../session.inc");
if (!$user || $role != 'Admin') header("Location: /");
echo $header;
?>
<div align='left'>
<hr>
<b>Admin Panel</b><br>
[ <a href='admin/?pg=websessions'>Sessions</a> ]
[ <a href='admin/?pg=weblogs'>Logs</a> ]
[ <a href='admin/?pg=webusers'>Users</a> ]
[ <a href='admin/?pg=doctors'>Doctors</a> ]
[ <a href='admin/?pg=staffs'>Staffs</a> ]
[ <a href='admin/?pg=medicines'>Medicines</a> ]
[ <a href='admin/?pg=phtests'>Pathology Tests</a> ]
[ <a href='admin/?pg=hospitals'>Hospitals</a> ]
<b>Schedules</b> [ <a href='admin/?pg=dschedules'>Doctor</a> | <a href='admin/?pg=sschedules'>Staff</a> ]
<b>Records</b> [ <a href='admin/?pg=students'>Students</a> | <a href='admin/?pg=employees'>Employees</a> | <a href='admin/?pg=agencystaffs'>Others</a> ]
<b>Mailing</b> [ <a href='admin/?pg=dirpmail'>DIRP</a> | <a href='admin/?pg=patientmail'>Patient</a> ]
<hr>
<b>Doctor Panel</b><br>
<b>Status</b> [ <a href='doctor/?pg=patients'>Patients</a> | <a href='doctor/?pg=registrations'>Registrations</a> |
<a href='doctor/?pg=medicines'>Medicines</a> | <a href='doctor/?pg=materials'>Materials</a> | <a href='doctor/?pg=stockbook'>Stockbook</a> ]
<!--
<b>Reports</b> [ <a href='doctor/?pg=reports&rep=daily'>Daily</a> | <a href='doctor/?pg=reports&rep=monthly'>Monthly</a> ]
-->
<b>Receipts</b> [ <a href='doctor/?pg=daily_receipts'>Daily</a> | <a href='doctor/?pg=monthly_receipts'>Monthly</a> ]
<b>Medications</b> [ <a href='doctor/?pg=daily_medications'>Daily</a> | <a href='doctor/?pg=monthly_medications'>Monthly</a> ]
<b>Bills</b> [ <a href='doctor/?pg=verification'>Verification</a> ]
<b>Modules</b> [ <a href='staff/'>Staff</a> ]
<hr>
<b>Staff Panel</b><br>
<b>Status</b> [ <a href='staff/?pg=patients'>Patients</a> ]
<b>OPD</b> [ <a href='staff/?pg=registration'>Registration</a> | <a href='staff/?pg=prescription'>Prescription</a> ]
<b>IPD</b> [ <a href='staff/?pg=admission'>Admission</a> | <a href='staff/?pg=bhtest'>BHTest</a> | <a href='staff/?pg=discharge'>Discharge</a> ]
<b>M.Store</b> [ <a href='staff/?pg=medicines'>Medicine</a> | <a href='staff/?pg=receipt'>Receipt</a> ]
<b>P.Store</b> [ <a href='staff/?pg=materials'>Material</a> | <a href='staff/?pg=preceipt'>Receipt</a> ]
<b>Utilization</b> [ <a href='staff/?pg=medication'>Medication</a> | <a href='staff/?pg=dressing'>Dressing</a> ]
<b>Pathology</b> [ <a href='staff/?pg=phresult'>Result</a> ]
<b>Bill</b> [ <a href='staff/?pg=bill'>Receipt</a> ]
<b>Registrations</b> [ <a href='staff/?pg=registrations®=daily'>Daily</a> | <a href='staff/?pg=registrations®=monthly'>Monthly</a> | <a href='staff/?pg=registrations®=yearly'>Yearly</a> ]
<hr>
<b>Patient Panel</b><br>
<b>Records</b> [ <a href='patient/?pg=personal'>Personal Detail</a> |
<a href='patient/?pg=mhistory'>Medical History</a> |
<a href='patient/?pg=bills'>Submitted Bills</a> |
<a href='patient/?pg=hospitals'>Recognized Hospitals</a> ]
<b>Registrations</b> [ <a href='patient/?pg=registrations®=daily'>Todays</a> |
<a href='patient/?pg=registrations®=monthly'>Monthly</a> | <a href='patient/?pg=registrations®=yearly'>Yearly</a> ]
<hr>
</div>
<?php
if (!$pg) $pg = 'dschedules';
include("$pg.inc");
echo $footer;
?>