<?php
/** ensure this file is being included by a parent file */
defined( '_VALID_' ) or die( 'Direct Access to this location is not allowed.' );
$sql_permission = "select * from delegate_permission where person_id='$_SESSION[login_user_id]'";
$dbquery_permission = mysqli_query($connect,$sql_permission);
$result_permission = mysqli_fetch_array($dbquery_permission);
if(!(isset($_SESSION['admin_delegate']))){
$_SESSION['admin_delegate']="";
}
echo "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
echo "<tr bgcolor='#FFCC00'><td>";
echo "<ul id='nav' class='dropdown dropdown-horizontal'>";
echo "<li><a href='./'>รายการหลัก</a></li>";
if($_SESSION['admin_delegate']=="delegate"){
echo "<li><a href='?option=delegate' class='dir'>ตั้งค่าระบบ</a>";
echo "<ul>";
echo "<li><a href='?option=delegate&task=permission'>กำหนดเจ้าหน้าที่</a></li>";
echo "</ul>";
echo "</li>";
}
if(($_SESSION['admin_delegate']=="delegate") or ($_SESSION['login_status']<=4 and $result_permission['p1']==1)){
echo "<li><a href='?option=delegate&task=main/delegate' class='dir'>บันทึกข้อมูล</a>";
echo "<ul>";
echo "<li><a href='?option=delegate&task=main/delegate'>การรักษาราชการแทน</a></li>";
echo "</ul>";
echo "</li>";
}
if($_SESSION['login_status']<=5){
echo "<li><a href='?option=delegate&task=main/report_delegate' class='dir'>รายงาน</a>";
echo "<ul>";
echo "<li><a href='?option=delegate&task=main/report_delegate'>การรักษาราชการแทน</a></li>";
echo "</ul>";
echo "</li>";
}
echo "</li>";
echo "<li><a href='?option=delegate' class='dir'>คู่มือ</a>";
echo "<ul>";
echo "<li><a href='modules/delegate/manual/delegate.pdf' target='_blank'>คู่มือการรักษาราชการแทน</a></li>";
echo "</ul>";
echo "</li>";
echo "</ul>";
echo "</td></tr>";
echo "</table>";
?>