Blame view

src/Template/Element/menu.ctp 1.66 KB
64fba1a2   Alexandre   Base du projet : ...
1
2
3
4
<h3>Menu</h3>
	<!-- Upper left bar menu definition for all users -->
<ul>
	<li><?= $this->Html->link(__('<i class="icon-home"></i> Accueil'), 
db93d5c9   Alexandre   Version: 2.4.1.0
5
			['controller' => 'pages', 'action' => 'home'], 
64fba1a2   Alexandre   Base du projet : ...
6
7
			['escape' => false]); ?></li>

04a6b875   Alexandre   Version: 2.4.2.0
8
9
<?php if(isset($username) && $username != " "): ?>

4260780b   Alexandre   Migration vue, co...
10
11
12
	<li><?= $this->Html->link(__('<i class="icon-search"></i> Rechercher un matériel'), 
			['controller' => 'materiels', 'action' => 'find'],
			['escape' => false]); ?></li>
64fba1a2   Alexandre   Base du projet : ...
13
14
15
16
17
18
19
20
21
22
23
24
	
	<li><?= $this->Html->link(__('<i class="icon-list"></i> Liste des matériels'), 
			['controller' => 'Materiels', 'action' => 'index'], 
			['escape' => false]) ?></li>
	
	<li><?= $this->Html->link(__('<i class="icon-list"></i> Liste des suivis'), 
			['controller' => 'Suivis', 'action' => 'index'], 
			['escape' => false]) ?></li>
	
	<li><?= $this->Html->link(__('<i class="icon-list"></i> Liste des emprunts'), 
			['controller' => 'Emprunts', 'action' => 'index'], 
			['escape' => false]) ?></li>
04a6b875   Alexandre   Version: 2.4.2.0
25
26
	
	<?php if(isset($role) && !(in_array($role, ['Utilisateur']))): ?>
6f27e48f   Alexandre   Ajout "outils" da...
27
28
29
	<li><?= $this->Html->link(__('<i class="icon-wrench"></i> Outils'), 
			['controller' => 'pages', 'action' => 'tools'], 
			['escape' => false]) ?></li>
04a6b875   Alexandre   Version: 2.4.2.0
30
31
32
	<?php endif; ?>
			
<?php endif; ?>
6f27e48f   Alexandre   Ajout "outils" da...
33
			
64fba1a2   Alexandre   Base du projet : ...
34
35
	<li><?= $this->Html->link(__('<i class="icon-list"></i> A PROPOS'), 
			['controller' => 'pages', 'action' => 'about'], 
4260780b   Alexandre   Migration vue, co...
36
			['escape' => false]) ?></li>	
64fba1a2   Alexandre   Base du projet : ...
37
</ul>
4260780b   Alexandre   Migration vue, co...
38
<?php
04a6b875   Alexandre   Version: 2.4.2.0
39
40
41
if(isset($username) && $username != " "):
	echo '<h3 style="margin-top: 20px;">Recherche</h3>';

4260780b   Alexandre   Migration vue, co...
42
43
	//Search function
	echo $this->Form->create('Materiel', ['url' => '/materiels/find']);
a97b5772   Alexandre   Migration fonctio...
44
    echo '<input name="s_all_2" class="search-input" type="text" id="MaterielSAll">';
4260780b   Alexandre   Migration vue, co...
45
    echo $this->Form->end();
04a6b875   Alexandre   Version: 2.4.2.0
46
endif;
4260780b   Alexandre   Migration vue, co...
47
?>