Make icons clickable in menus
This commit is contained in:
@@ -3,46 +3,37 @@
|
||||
<ul>
|
||||
<li class="no-hover"><strong><?= $this->text->e($this->user->getFullname()) ?></strong></li>
|
||||
<li>
|
||||
<i class="fa fa-tachometer fa-fw"></i>
|
||||
<?= $this->url->link(t('My dashboard'), 'DashboardController', 'show', array('user_id' => $this->user->getId())) ?>
|
||||
<?= $this->url->icon('tachometer', t('My dashboard'), 'DashboardController', 'show', array('user_id' => $this->user->getId())) ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-home fa-fw"></i>
|
||||
<?= $this->url->link(t('My profile'), 'UserViewController', 'show', array('user_id' => $this->user->getId())) ?>
|
||||
<?= $this->url->icon('home', t('My profile'), 'UserViewController', 'show', array('user_id' => $this->user->getId())) ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-folder fa-fw"></i>
|
||||
<?= $this->url->link(t('Projects management'), 'ProjectListController', 'show') ?>
|
||||
<?= $this->url->icon('folder', t('Projects management'), 'ProjectListController', 'show') ?>
|
||||
</li>
|
||||
<?php if ($this->user->hasAccess('UserListController', 'show')): ?>
|
||||
<li>
|
||||
<i class="fa fa-user fa-fw"></i>
|
||||
<?= $this->url->link(t('Users management'), 'UserListController', 'show') ?>
|
||||
<?= $this->url->icon('user', t('Users management'), 'UserListController', 'show') ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-group fa-fw"></i>
|
||||
<?= $this->url->link(t('Groups management'), 'GroupListController', 'index') ?>
|
||||
<?= $this->url->icon('group', t('Groups management'), 'GroupListController', 'index') ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-cubes" aria-hidden="true"></i>
|
||||
<?= $this->url->link(t('Plugins'), 'PluginController', 'show') ?>
|
||||
<?= $this->url->icon('cubes', t('Plugins'), 'PluginController', 'show') ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-cog fa-fw"></i>
|
||||
<?= $this->url->link(t('Settings'), 'ConfigController', 'index') ?>
|
||||
<?= $this->url->icon('cog', t('Settings'), 'ConfigController', 'index') ?>
|
||||
</li>
|
||||
<?php endif ?>
|
||||
|
||||
<?= $this->hook->render('template:header:dropdown') ?>
|
||||
|
||||
<li>
|
||||
<i class="fa fa-life-ring fa-fw"></i>
|
||||
<?= $this->url->link(t('Documentation'), 'DocumentationController', 'show') ?>
|
||||
<?= $this->url->icon('life-ring', t('Documentation'), 'DocumentationController', 'show') ?>
|
||||
</li>
|
||||
<?php if (! DISABLE_LOGOUT): ?>
|
||||
<li>
|
||||
<i class="fa fa-sign-out fa-fw"></i>
|
||||
<?= $this->url->link(t('Logout'), 'AuthController', 'logout') ?>
|
||||
<?= $this->url->icon('sign-out', t('Logout'), 'AuthController', 'logout') ?>
|
||||
</li>
|
||||
<?php endif ?>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user