Blame view

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

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

63c3cb16   epallier   Nombreux petits b...
8
	<li><?=$this->Html->link('<i class="icon-plus"></i> Nouveau matériel', ['controller' => 'Materiels','action' => 'add'], ['escape' => false]);?></li>
5b54a286   mimelhaine   Version master pe...
9
10
	
	<li><?=$this->Html->link('<i class="icon-briefcase"></i> Mes matériels', ['controller' => 'Materiels', 'action' => 'index', 'MY' => $username ], ['escape' => false]);?></li>
e9a0cc56   Alexandre   Version: 2.4.6.0
11

63c3cb16   epallier   Nombreux petits b...
12
13
14
15
16
17
18
19
20
21
22
	<li><?=$this->Html->link(__('<i class="icon-search"></i> Rechercher un matériel'), ['controller' => 'materiels','action' => 'find'], ['escape' => false]);?></li>

	<li><?=$this->Html->link(__('<i class="icon-search"></i> Rechercher un suivi'), ['controller' => 'suivis','action' => 'find'], ['escape' => false]);?></li>

	<li><?=$this->Html->link(__('<i class="icon-search"></i> Rechercher un emprunt'), ['controller' => 'emprunts','action' => 'find'], ['escape' => false]);?></li>

	<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
23
	
63c3cb16   epallier   Nombreux petits b...
24
25
26
27
	<?php
    echo '<li>';
    echo $this->Html->link('<i class="icon-list"></i> Voir les autres listes', [
        'controller' => 'pages',
cb6baea5   Etienne Pallier   bugfixes et refac...
28
29
        //'action' => 'tools_menu_sm'
        'action' => 'tools_sm'
63c3cb16   epallier   Nombreux petits b...
30
31
32
33
34
    ], [
        'escape' => false
    ]);
    echo '</li>';
    ?>
3ef8f907   Alexandre   Version: 2.4.5.0
35
	
04a6b875   Alexandre   Version: 2.4.2.0
36
	<?php if(isset($role) && !(in_array($role, ['Utilisateur']))): ?>
63c3cb16   epallier   Nombreux petits b...
37
	<li><?=$this->Html->link(__('<i class="icon-wrench"></i> Outils'), ['controller' => 'pages','action' => 'tools'], ['escape' => false])?></li>
04a6b875   Alexandre   Version: 2.4.2.0
38
39
40
	<?php endif; ?>
			
<?php endif; ?>
6f27e48f   Alexandre   Ajout "outils" da...
41
			
63c3cb16   epallier   Nombreux petits b...
42
43
	<li><?=$this->Html->link(__('<i class="icon-list"></i> A propos'), ['controller' => 'pages','action' => 'about'], ['escape' => false])?></li>

64fba1a2   Alexandre   Base du projet : ...
44
</ul>
4260780b   Alexandre   Migration vue, co...
45
<?php
fcb184c7   Etienne Pallier   Bugfix et grosse ...
46
if (isset($username) && $username != " ") {
39d6d195   Etienne Pallier   Bugfixed materiel...
47
    echo '<h3 style="margin-top: 20px;">Recherche (matériels)</h3>';
63c3cb16   epallier   Nombreux petits b...
48
49
50
51
52
    
    // Search function
    echo $this->Form->create('Materiel', [
        'url' => '/materiels/find'
    ]);
a97b5772   Alexandre   Migration fonctio...
53
    echo '<input name="s_all_2" class="search-input" type="text" id="MaterielSAll">';
39d6d195   Etienne Pallier   Bugfixed materiel...
54
55
56
57
58
    echo $this->Form->submit('Chercher', [
        'name' => 'MaterielSAll',
        'id' => 'MaterielSAll',
        'style' => 'margin: 0px;'
    ]);
4260780b   Alexandre   Migration vue, co...
59
    echo $this->Form->end();
fcb184c7   Etienne Pallier   Bugfix et grosse ...
60
}
d58b8953   Alexandre   Version: 2.4.4.0
61

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