mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
61 lines
4.2 KiB
PHP
61 lines
4.2 KiB
PHP
<?php $menus = getMenuControl(); ?>
|
|
<!--Sidebar-->
|
|
<div class="quixnav">
|
|
<div class="quixnav-scroll">
|
|
<ul class="metismenu" id="menu">
|
|
<li><a href="<?= site_url("")?>" aria-expanded="false"><i class="fas fa-th-large"></i><span class="nav-text"><?= lang("App.menu_dashboard") ?></span></a></li>
|
|
<?php if (count(getArrayItem($menus,'name','User')) > 0): ?>
|
|
<li class="nav-label"><?= lang("App.menu_registration") ?></li>
|
|
<li><a class="has-arrow" href="Javascript:void()" aria-expanded="false"><i class="fas fa-user-friends"></i><span class="nav-text"><?= lang("App.menu_users") ?></span></a>
|
|
<ul aria-expanded="false">
|
|
<?php if (count(getArrayItem($menus,'methods','index',true)) > 0): ?>
|
|
<li><a href="<?= site_url("usuarios/user")?>"><?= lang("App.menu_list") ?></a></li>
|
|
<?php endif; ?>
|
|
<?php if (count(getArrayItem($menus,'methods','add',true)) > 0): ?>
|
|
<li><a href="<?= site_url("usuarios/user/add")?>"><?= lang("App.menu_add") ?></a></li>
|
|
<?php endif; ?>
|
|
</ul>
|
|
</li>
|
|
<?php endif; ?>
|
|
<?php if (count(getArrayItem($menus,'name','Group')) > 0): ?>
|
|
<li><a class="has-arrow" href="Javascript:void()" aria-expanded="false"><i class="fas fa-user-lock"></i><span class="nav-text"><?= lang("App.menu_permission_group") ?></span></a>
|
|
<ul aria-expanded="false">
|
|
<?php if (count(getArrayItem($menus,'methods','index',true)) > 0): ?>
|
|
<li><a href="<?= site_url("usuarios/group")?>"><?= lang("App.menu_list") ?></a></li>
|
|
<?php endif; ?>
|
|
<?php if (count(getArrayItem($menus,'methods','add',true)) > 0): ?>
|
|
<li><a href="<?= site_url("usuarios/group/add")?>"><?= lang("App.menu_add") ?></a></li>
|
|
<?php endif; ?>
|
|
</ul>
|
|
</li>
|
|
<?php endif; ?>
|
|
<?php if (count(getArrayItem($menus,'name','Notification')) > 0): ?>
|
|
<li><a class="has-arrow" href="Javascript:void()" aria-expanded="false"><i class="fas fa-bell"></i><span class="nav-text"><?= lang("App.menu_notification") ?></span></a>
|
|
<ul aria-expanded="false">
|
|
<?php if (count(getArrayItem($menus,'methods','index',true)) > 0): ?>
|
|
<li><a href="<?= site_url("notification")?>"><?= lang("App.menu_list") ?></a></li>
|
|
<?php endif; ?>
|
|
<?php if (count(getArrayItem($menus,'methods','add',true)) > 0): ?>
|
|
<li><a href="<?= site_url("notification/add")?>"><?= lang("App.menu_add") ?></a></li>
|
|
<?php endif; ?>
|
|
</ul>
|
|
</li>
|
|
<?php endif; ?>
|
|
<?php if (count(getArrayItem($menus,'name','Settings')) > 0): ?>
|
|
<li class="nav-label"><?= lang("App.menu_settings") ?></li>
|
|
<?php if (count(getArrayItem($menus,'methods','index',true)) > 0): ?>
|
|
<li><a href="<?= site_url("settings")?>" aria-expanded="false"><i class="fas fa-sliders-h"></i><span class="nav-text"><?= lang("App.menu_general") ?></span></a></li>
|
|
<?php endif; ?>
|
|
|
|
<?php if (count(getArrayItem($menus,'methods','template',true)) > 0): ?>
|
|
<li><a href="<?= site_url("settings/template")?>" aria-expanded="false"><i class="fas fa-mail-bulk"></i><span class="nav-text"><?= lang("App.menu_template") ?></span></a></li>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<li class="nav-label"></li>
|
|
<?php if (count(getArrayItem($menus,'name','Activity')) > 0): ?>
|
|
<li><a href="<?= site_url("activity")?>" aria-expanded="false"><i class="fas fa-list"></i><span class="nav-text"><?= lang("App.menu_activity") ?></span></a></li>
|
|
<?php endif; ?>
|
|
<li><a href="<?= site_url("login/logout")?>" aria-expanded="false"><i class="fas fa-sign-out-alt"></i><span class="nav-text"><?= lang("App.menu_logout") ?></span></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|