JFIF $ d d 7 * Z qn )ZP 0 !1 A "#a$2Qr D8 a Ri [f \m I ykI w0 c u F c Rı?lO7 к _f˓ [C $殷WF< _W ԣ s Kc ëI zyQy /_LK ℂ ;C",p F A : /] =H ~ , l s / 9 ć: [=/#f ; ) x { ٛE Q )~ = 𘙲r*2~ a _V = ' ku m F D } KYYC )( { * g& f `툪 r y ` = ^ c J. I ]( * `wq 1dđ #̩ ͑ 0 ; H ] u 搂 @:~ ו K L N s h } O I R* 8 :2 ! lD JV o ( 3 = M ( z Ȱ+i *N A r6K n S l ) ! J J Ӂ* % ݉?|D } d5: eP0 R; {$X' x F @ .ÊB {,WJ uQ ɲRI ;9 Q E琯 6 2fT .DU J ;*c P A\IL Nj! J ۱+ O\ ͔ ] ޒ S J ȧ c%A N ol ՎprU L Zԛe r E2= X D Xg VQeӓ k y P7 U* o m Q I s ,K `) 6\G3t?pgjr m ۛجw luGt f h 9uyP 0D;Uڽ"OXl i f $ ) &|ML 0 Z rm1 [ H XP l P R0 'G=i 2N +0 e 2 ]] 9 VT P O 7 h(F * 癈 ' = Q VZD F,d ߬ ~ T X G[ `le 69C R(!S2! P < 0 x < !1AQ "Raq 02Br #S CTb ? Ζ "]mH5WR 7 k.ۛ ! } Q~ + yԏ z |@ T20 S~ K e k *zF f^2X *( @ 8 r ? C I uI|֓>^Ex LgNU Y+{.R Ѫ τV YT D I 6 2 '8Y2 7'\T P.6 d &˦ @V q i |8 -O Ε ] ʔ U= T L 8= ;6c | !qfF3 a ů& ~$ l} 'NW U s$U k^S V : U#6w + +s &r+n ڐ { @ 29gL u " T Ù M=6 (^ "7 r}=6Yݾ lC u hquymp Ǧ G jhs ǜNl ɻ} o 7 #S6 a w 4 ! OS r D 5 7 % | ?x> L | / nD 6?/8 w # [ ) L 7 +6〼T A T g ! %5 Mm Z /c -{1_Je "| ^$ 'O & ޱմ < H vNqϡQ$ < 6 &Nݛ ֨tǻN (9 n ru~'όN sMG& ,uH Kw *Ī 5@ u6 BԒ i YN * f 0 _ GhKW u lT <nj- 0{ M L~ | /a v\ E = ?1 \ɟuq Ђ Y O a K ޡP q $ H8o Q˼EV ~ k 0 h' L Pp M -M" m^ !6l nմ 쮝C U T . ! :vMǨb h ډ Vc r @~p # !1QAa q ? AL0L x LU 4 d ; x " 16ad0 7.\ߋ 0 = P l v/ " c A Ay A|2pO8"d MV #1] = \ " ˡ ] k v I9 d ۓ & q ) ǐq E ꞅ v "P )q X &Q З non]я u ג./ ; gZ$ M QР 2M ]h ni 0 P $ێ 3CɏGjώy : m c # S_ l@ '_ \m|C 2`K _ 1 cIvGc $? PCQ S+D ? K aײ k Fr b 8 ύ NEدg ĝ U 3 6 #Ik+ v { v i ( ވ ? a e) X xy/*@Q Ǽ Ծ ) $ IWO l c G; !i k{ gOŀ L ('x T rb $ w) R $ & N1E td U3Uȉ1p M"N* (DNy d96.(jQ) X 5 c QɎMy W ? Q *!R > 6=7)Xj 5`J ] e 8%t ! + ' ! 1Q 5 !1 AQaq ё #2 "0BRb ? G t^ ## .l lQ T $ v , ,m 㵜5u bV =sY+ @d { N ! dn O < .- B; _w J t 6;Q Jd. Q c%p{ 1 ,sND dF H I0 Гo X ш e黅X ۢ F :)[ F G X ƹ / w _c MeD ,ʡc c . W D tA $ j@ : ) - #u c1< @ۗ9F ) KJ- hpP] _ x [ q B lb p ʖ w q " LFGd ƶ * s +ډ_Zc " ? % t[I P 6 J ]# =ɺ V v v CGs Gh1 > )6 |e y ? L ӣ m,4 G W Ui ` ] uJVo VDG< SB 6ϏQ @ TiU l y O U 0 kfV ~ ~}S Z @ *WU Ui ## ; s /[ = ! 7}" W N ] ' (L ! ~ y5 g9T̅J kbM' +s :S +B) v @ M j e C f j E 0 Y\Qn z G 1 д~ W o{T 9?` Rm yhsy3 !HAD ] m c1 ~ 2 L S u7x T ;j$ `} 4-> L# vzŏ I L S ֭ T { r jGK C ; b pU= - ` Bs K. S F w4 M q] Z dH S 0 ) tLg
<?php
require('connection.inc.php'); // Ensure the database connection is included
// Set error reporting to display errors
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Assuming user is logged in and user_id is set in session
if (isset($_SESSION['user_id'])) {
$user_id = $_SESSION['user_id'];
// Fetch user role
$query = "SELECT role_id FROM users WHERE user_id = '$user_id'";
$result = mysqli_query($conn, $query);
$user = mysqli_fetch_assoc($result);
$role_id = $user['role_id'];
// Fetch permissions for the user's role
$permissionsQuery = "SELECT permission_id FROM role_permissions WHERE role_id = '$role_id'";
$permissionsResult = mysqli_query($conn, $permissionsQuery);
$permissions = [];
while ($row = mysqli_fetch_assoc($permissionsResult)) {
$permissions[] = $row['permission_id'];
}
// Store permissions in session
$_SESSION['permissions'] = $permissions;
} else {
// Redirect to login if user is not logged in
header('Location: index.php');
exit();
}
?>
<nav class="sidebar">
<div class="logo d-flex justify-content-between">
<a class="large_logo text-center mx-auto" href="dashboard.php"><img class="text-center mx-auto" src="../assets/img/allnew/logo.png" height="80" alt=""></a>
<a class="small_logo" href="dashboard.php"><img src="img/mini_logo.png" alt=""></a>
<div class="sidebar_close_icon d-lg-none">
<i class="ti-close"></i>
</div>
</div>
<ul id="sidebar_menu">
<?php if (in_array(3, $_SESSION['permissions'])): ?>
<li class="">
<a href="dashboard.php" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/dashboard.svg" alt="">
</div>
<div class="nav_title">
<span>Dashboard</span>
</div>
</a>
</li>
<?php endif; ?>
<?php if (in_array(1, $_SESSION['permissions'])): ?>
<li class="">
<a class="has-arrow" href="#" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/11.svg" alt="">
</div>
<div class="nav_title">
<span>Role & Permissions</span>
</div>
</a>
<ul>
<li><a href="add_new_role.php">Add New Role</a></li>
<li><a href="role_permissions.php">Permissions</a></li>
</ul>
</li>
<?php endif; ?>
<?php if (in_array(2, $_SESSION['permissions'])): ?>
<li class="">
<a class="has-arrow" href="#" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/5.svg" alt="">
</div>
<div class="nav_title">
<span>Users</span>
</div>
</a>
<ul>
<li><a href="add_new_user.php">Add New User</a></li>
<li><a href="user_list.php">User List</a></li>
</ul>
</li>
<?php endif; ?>
<?php if (in_array(4, $_SESSION['permissions'])): ?>
<li class="">
<a href="add_new_category.php" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/5.svg" alt="">
</div>
<div class="nav_title">
<span>Categories</span>
</div>
</a>
</li>
<?php endif; ?>
<?php if (in_array(5, $_SESSION['permissions'])): ?>
<li class="">
<a href="add_new_product.php" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/5.svg" alt="">
</div>
<div class="nav_title">
<span>Products</span>
</div>
</a>
</li>
<?php endif; ?>
<?php if (in_array(6, $_SESSION['permissions'])): ?>
<li class="">
<a href="add_new_blog.php" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/6.svg" alt="">
</div>
<div class="nav_title">
<span>Blogs</span>
</div>
</a>
</li>
<?php endif; ?>
<?php if (in_array(7, $_SESSION['permissions'])): ?>
<li class="">
<a href="orders.php" aria-expanded="false">
<div class="nav_icon_small">
<img src="img/menu-icon/6.svg" alt="">
</div>
<div class="nav_title">
<span>Orders</span>
</div>
</a>
</li>
<?php endif; ?>
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/2.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Application </span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="editor.html">editor</a></li>-->
<!-- <li><a href="mail_box.html">Mail Box</a></li>-->
<!-- <li><a href="chat.html">Chat</a></li>-->
<!-- <li><a href="faq.html">FAQ</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/3.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Pages</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="login.html">Login</a></li>-->
<!-- <li><a href="resister.html">Register</a></li>-->
<!-- <li><a href="error_400.html">Error 404</a></li>-->
<!-- <li><a href="error_500.html">Error 500</a></li>-->
<!-- <li><a href="forgot_pass.html">Forgot Password</a></li>-->
<!-- <li><a href="gallery.html">Gallery</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/4.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Admins</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="admin_list.html">Admin List</a></li>-->
<!-- <li><a href="add_new_admin.html">Add New Admin</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a href="navs.html" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/12.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Navs</span>-->
<!-- </div>-->
<!-- </a>-->
<!--</li>-->
<!--<li>-->
<!-- <a href="Builder.html" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/6.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Builder </span>-->
<!-- </div>-->
<!-- </a>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a href="invoice.html" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/7.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Invoice</span>-->
<!-- </div>-->
<!-- </a>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/8.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>forms</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="Basic_Elements.html">Basic Elements</a></li>-->
<!-- <li><a href="Groups.html">Groups</a></li>-->
<!-- <li><a href="Max_Length.html">Max Length</a></li>-->
<!-- <li><a href="Layouts.html">Layouts</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li class="">-->
<!-- <a href="Board.html" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/9.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Board</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- </li>-->
<!--<li class="">-->
<!-- <a href="calender.html" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/10.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Calander</span>-->
<!-- </div>-->
<!-- </a>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/11.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Themes</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="dark_sidebar.html">Dark Sidebar</a></li>-->
<!-- <li><a href="light_sidebar.html">light Sidebar</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/12.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>General</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="Minimized_Aside.html">Minimized Aside</a></li>-->
<!-- <li><a href="empty_page.html">Empty page</a></li>-->
<!-- <li><a href="fixed_footer.html">Fixed Footer</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/13.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Products</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="Products.html">Products</a></li>-->
<!-- <li><a href="Product_Details.html">Product Details</a></li>-->
<!-- <li><a href="Cart.html">Cart</a></li>-->
<!-- <li><a href="Checkout.html">Checkout</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/14.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Icons</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="Fontawesome_Icon.html">Fontawesome Icon</a></li>-->
<!-- <li><a href="themefy_icon.html">themefy icon</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/15.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Animations</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="wow_animation.html">Animate</a></li>-->
<!-- <li><a href="Scroll_Reveal.html">Scroll Reveal</a></li>-->
<!-- <li><a href="tilt.html">Tilt Animation</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/16.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Components</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="accordion.html">Accordions</a></li>-->
<!-- <li><a href="Scrollable.html">Scrollable</a></li>-->
<!-- <li><a href="notification.html">Notifications</a></li>-->
<!-- <li><a href="carousel.html">Carousel</a></li>-->
<!-- <li><a href="Pagination.html">Pagination</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/17.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Table</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="data_table.html">Data Tables</a></li>-->
<!-- <li><a href="bootstrap_table.html">Bootstrap</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!-- <li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/18.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Cards</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="basic_card.html">Basic Card</a></li>-->
<!-- <li><a href="theme_card.html">Theme Card</a></li>-->
<!-- <li><a href="dargable_card.html">Draggable Card</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/19.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Charts</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="chartjs.html">ChartJS</a></li>-->
<!-- <li><a href="apex_chart.html">Apex Charts</a></li>-->
<!-- <li><a href="chart_sparkline.html">Chart sparkline</a></li>-->
<!-- <li><a href="am_chart.html">am-charts</a></li>-->
<!-- <li><a href="nvd3_charts.html">nvd3 charts.</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/20.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>UI Kits </span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="colors.html">colors</a></li>-->
<!-- <li><a href="Alerts.html">Alerts</a></li>-->
<!-- <li><a href="buttons.html">Buttons</a></li>-->
<!-- <li><a href="modal.html">modal</a></li>-->
<!-- <li><a href="dropdown.html">Droopdowns</a></li>-->
<!-- <li><a href="Badges.html">Badges</a></li>-->
<!-- <li><a href="Loading_Indicators.html">Loading Indicators</a></li>-->
<!-- <li><a href="color_plate.html">Color Plate</a></li>-->
<!-- <li><a href="typography.html">Typography</a></li>-->
<!-- <li><a href="datepicker.html">Date Picker</a></li>-->
<!-- </ul>-->
<!-- </li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/21.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Widgets</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="chart_box_1.html">Chart Boxes 1</a></li>-->
<!-- <li><a href="profilebox.html">Profile Box</a></li>-->
<!-- </ul>-->
<!--</li>-->
<!--<li class="">-->
<!-- <a class="has-arrow" href="#" aria-expanded="false">-->
<!-- <div class="nav_icon_small">-->
<!-- <img src="img/menu-icon/12.svg" alt="">-->
<!-- </div>-->
<!-- <div class="nav_title">-->
<!-- <span>Maps</span>-->
<!-- </div>-->
<!-- </a>-->
<!-- <ul>-->
<!-- <li><a href="mapjs.html">Maps JS</a></li>-->
<!-- <li><a href="vector_map.html">Vector Maps</a></li>-->
<!-- </ul>-->
<!--</li>-->
</ul>
</nav>