Backend Service
This commit is contained in:
@@ -116,9 +116,9 @@
|
||||
<label for="sel1">Select Reminder:</label>
|
||||
<select class="form-control" id="sel1" name="reminder_type">
|
||||
<option value='0'>Email</option>
|
||||
<option value='1'>Email + Notification</option>
|
||||
<option value='2'>SMS + Email + Notification</option>
|
||||
<option value='3'>No Reminder</option>
|
||||
<option value='1' selected>Email + Notification</option>
|
||||
<option value='2'>Email</option>
|
||||
<option value='3'>SMS Notification</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,3 +1,16 @@
|
||||
<?
|
||||
$menu = array(
|
||||
'office' =>[
|
||||
'Dashboard'=>['provider','Dashboard','1'],
|
||||
'Calendar'=>['provider/calendar','Calendar','0'],
|
||||
'Add Patient'=>['patient/addnew','Add Patient','0'],
|
||||
'Find Patient'=>['patient/findpatient','Find Patient','0']
|
||||
],
|
||||
'another'
|
||||
);
|
||||
|
||||
?>
|
||||
|
||||
<!-- begin sidebar-nav -->
|
||||
<div class="sidebar-nav scrollbar scroll_light">
|
||||
<ul class="metismenu " id="sidebarNav">
|
||||
@@ -9,10 +22,18 @@
|
||||
<span class="nav-label label label-danger">9</span>
|
||||
</a>
|
||||
<ul aria-expanded="false">
|
||||
<li class="active"> <a href='/provider'>Dashboard</a> </li>
|
||||
<?
|
||||
foreach( $menu['office'] AS $mnuItem){
|
||||
$selectedString = $mnuItem[2]==1 ? " class='active' " : '';
|
||||
?>
|
||||
<li> <a href='/<?=$mnuItem[0]?>' <?=$selectedString?> ><?=$mnuItem[1]?></a> </li>
|
||||
<?
|
||||
}
|
||||
?>
|
||||
<!-- li class="active"> <a href='/provider'>Dashboard</a> </li>
|
||||
<li> <a href='/provider/calendar'>Calendar</a> </li>
|
||||
<li> <a href='/patient/addnew'>Add Patient</a> </li>
|
||||
<li> <a href='/patient/findpatient'>Find Patient</a> </li>
|
||||
<li> <a href='/patient/findpatient'>Find Patient</a> </li -->
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="app-chat.html" aria-expanded="false"><i class="nav-icon ti ti-comment"></i><span class="nav-title">Chat</span></a> </li>
|
||||
|
||||
Reference in New Issue
Block a user