Blame view

src/Template/Element/menu.ctp 2.36 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 != " "): ?>

e9a0cc56   Alexandre   Version: 2.4.6.0
10
11
12
13
	<li><?= $this->Html->link('<i class="icon-plus"></i> Nouveau matériel',
		['controller' => 'Materiels', 'action' => 'add'],
		['escape' => false]);?></li>

4260780b   Alexandre   Migration vue, co...
14
15
16
	<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 : ...
17
	
7bcf546d   Alexis Proust   mise a jour fichier
18
	<li><?= $this->Html->link(__('<i class="icon-search"></i> Rechercher un suivi'), 
e9a0cc56   Alexandre   Version: 2.4.6.0
19
20
			['controller' => 'suivis', 'action' => 'find'],
			['escape' => false]); ?></li>
7bcf546d   Alexis Proust   mise a jour fichier
21
22
23
24
25
			
	<li><?= $this->Html->link(__('<i class="icon-search"></i> Rechercher un emprunt'), 
			['controller' => 'emprunts', 'action' => 'find'],
			['escape' => false]); ?></li>
			
64fba1a2   Alexandre   Base du projet : ...
26
27
28
29
30
31
32
33
34
35
36
	<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
37
	
3ef8f907   Alexandre   Version: 2.4.5.0
38
39
40
41
42
43
44
45
	<?php 
		echo '<li>';
		echo $this->Html->link('<i class="icon-list"></i> Voir les autres listes', 
				['controller' => 'pages', 'action' => 'tools_menu_sm'],
				['escape' => false]);
		echo '</li>';
	?>
	
04a6b875   Alexandre   Version: 2.4.2.0
46
	<?php if(isset($role) && !(in_array($role, ['Utilisateur']))): ?>
6f27e48f   Alexandre   Ajout "outils" da...
47
48
49
	<li><?= $this->Html->link(__('<i class="icon-wrench"></i> Outils'), 
			['controller' => 'pages', 'action' => 'tools'], 
			['escape' => false]) ?></li>
04a6b875   Alexandre   Version: 2.4.2.0
50
51
52
	<?php endif; ?>
			
<?php endif; ?>
6f27e48f   Alexandre   Ajout "outils" da...
53
			
7bcf546d   Alexis Proust   mise a jour fichier
54
	<li><?= $this->Html->link(__('<i class="icon-list"></i> A propos'), 
64fba1a2   Alexandre   Base du projet : ...
55
			['controller' => 'pages', 'action' => 'about'], 
4260780b   Alexandre   Migration vue, co...
56
			['escape' => false]) ?></li>	
d58b8953   Alexandre   Version: 2.4.4.0
57
		
64fba1a2   Alexandre   Base du projet : ...
58
</ul>
4260780b   Alexandre   Migration vue, co...
59
<?php
04a6b875   Alexandre   Version: 2.4.2.0
60
61
62
if(isset($username) && $username != " "):
	echo '<h3 style="margin-top: 20px;">Recherche</h3>';

4260780b   Alexandre   Migration vue, co...
63
64
	//Search function
	echo $this->Form->create('Materiel', ['url' => '/materiels/find']);
a97b5772   Alexandre   Migration fonctio...
65
    echo '<input name="s_all_2" class="search-input" type="text" id="MaterielSAll">';
4260780b   Alexandre   Migration vue, co...
66
    echo $this->Form->end();
04a6b875   Alexandre   Version: 2.4.2.0
67
endif;
d58b8953   Alexandre   Version: 2.4.4.0
68
69
70



4260780b   Alexandre   Migration vue, co...
71
?>