<?php
/** ensure this file is being included by a parent file */
defined( '_VALID_' ) or die( 'Direct Access to this location is not allowed.' );
if(!isset($_SESSION['admin_line_notify'])){
$_SESSION['admin_line_notify']="";
}
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>";
echo "<li><a href='?option=line_notify' class='dir'>ตั้งค่าระบบ</a>";
echo "<ul>";
if($_SESSION['admin_line_notify']=="line_notify"){
echo "<li><a href='?option=line_notify&task=line_group'>กำหนดรหัส Token Line กลุ่ม</a></li>";
}
echo "</ul>";
echo "</li>";
echo "</ul>";
echo "</td></tr>";
echo "</table>";
?>