Blame view

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

4260780b   Alexandre   Migration vue, co...
8
9
10
	<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 : ...
11
12
13
14
15
16
17
18
19
20
21
22
23
	
	<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>
			
6f27e48f   Alexandre   Ajout "outils" da...
24
25
26
27
	<li><?= $this->Html->link(__('<i class="icon-wrench"></i> Outils'), 
			['controller' => 'pages', 'action' => 'tools'], 
			['escape' => false]) ?></li>
			
64fba1a2   Alexandre   Base du projet : ...
28
29
	<li><?= $this->Html->link(__('<i class="icon-list"></i> A PROPOS'), 
			['controller' => 'pages', 'action' => 'about'], 
4260780b   Alexandre   Migration vue, co...
30
			['escape' => false]) ?></li>	
64fba1a2   Alexandre   Base du projet : ...
31
32
</ul>

4260780b   Alexandre   Migration vue, co...
33
34
35
36
<h3 style="margin-top: 20px;">Recherche</h3>
<?php
	//Search function
	echo $this->Form->create('Materiel', ['url' => '/materiels/find']);
a97b5772   Alexandre   Migration fonctio...
37
    echo '<input name="s_all_2" class="search-input" type="text" id="MaterielSAll">';
4260780b   Alexandre   Migration vue, co...
38
39
    echo $this->Form->end();
?>