Blame view

src/Template/Pages/tools.ctp 1.83 KB
4260780b   Alexandre   Migration vue, co...
1

6f27e48f   Alexandre   Ajout "outils" da...
2
3
4
5
6
<div class="index">
	<h2><i class="icon-wrench"></i> Outils</h2>
	<table cellpadding="0" cellspacing="0">
		<tr><th></th></tr>
		<?php
4260780b   Alexandre   Migration vue, co...
7
		
6f27e48f   Alexandre   Ajout "outils" da...
8
9
			
			echo '<tr><td>';
8b709355   Alexandre   Affichage du cont...
10
			echo $this->Html->link('Voir les Droits des utilisateurs (ACLs)', ['controller' => 'pages', 'action' => 'acls']);
6f27e48f   Alexandre   Ajout "outils" da...
11
12
13
			echo '</td></tr>';
		
			echo '<tr><td>';
96b028a1   Alexandre   Migration de tout...
14
			echo $this->Html->link('Gérer les utilisateurs privilégiés', ['controller' => 'users', 'sort' => 'nom']);
6f27e48f   Alexandre   Ajout "outils" da...
15
			echo '</td></tr>';
96b028a1   Alexandre   Migration de tout...
16
		
6f27e48f   Alexandre   Ajout "outils" da...
17
			echo '<tr><td>';
8b709355   Alexandre   Affichage du cont...
18
			echo $this->Html->link('Voir les étiqueteuses installées', ['controller'=>'pages', 'action'=>'printers']);
6f27e48f   Alexandre   Ajout "outils" da...
19
20
21
			echo '</td></tr>';
			
			echo '<tr><td>';
5e70d8b0   Alexandre   Menu outils #3539
22
			echo $this->Html->link('Configuration  générale de l\'application', ['controller' => 'configuration', 'action' => 'view', 0]);
6f27e48f   Alexandre   Ajout "outils" da...
23
24
25
			echo '</td></tr>';
			
			echo '<tr><td>';
5e70d8b0   Alexandre   Menu outils #3539
26
			echo $this->Html->link('Gérer le contenu variable de l\'application', ['controller' => 'pages', 'action' => 'tools_sm']);
6f27e48f   Alexandre   Ajout "outils" da...
27
			echo '</td></tr>';
8b709355   Alexandre   Affichage du cont...
28
		
6f27e48f   Alexandre   Ajout "outils" da...
29
			echo '<tr><td>';
4260780b   Alexandre   Migration vue, co...
30
			echo $this->Html->link('Export de la liste des materiels actifs (format CSV)', ['controller' => 'materiels', 'action' => 'export']);
6f27e48f   Alexandre   Ajout "outils" da...
31
			echo '</td></tr>';
6f27e48f   Alexandre   Ajout "outils" da...
32

96b028a1   Alexandre   Migration de tout...
33
			echo '<tr><td>';
96b028a1   Alexandre   Migration de tout...
34
35
36
37
			echo $this->Html->link('Voir les informations sur le système', ['controller'=>'pages', 'action'=>'infos']);
			echo '</td></tr>';
			
			/*
96b028a1   Alexandre   Migration de tout...
38
39
			 * Mode debug
			 */
4260780b   Alexandre   Migration vue, co...
40
			echo '<tr><td>';
19798ef9   Alexandre   Mode_install, maj...
41
42
			if ($this->request->session()->read('install')) {
				echo $this->Form->postLink("Stopper le mode INSTALL", ['controller' => 'materiels', 'action'=>'installOff'], ['confirm' => __('Êtes-vous sur ?')]);
4260780b   Alexandre   Migration vue, co...
43
44
			}
			else {
19798ef9   Alexandre   Mode_install, maj...
45
				echo $this->Form->postLink("Passer en mode INSTALL", ['controller' => 'materiels', 'action'=>'installOn'], ['confirm' => __('Êtes-vous sur ?')]);
4260780b   Alexandre   Migration vue, co...
46
47
			}
			echo '</td></tr>';
5e70d8b0   Alexandre   Menu outils #3539
48

4260780b   Alexandre   Migration vue, co...
49
              
6f27e48f   Alexandre   Ajout "outils" da...
50
51
52
53
		?>
	</table>	
</div>

4260780b   Alexandre   Migration vue, co...
54
55
56
    	<div class="actions">
			<?php echo $this->element('menu') ?>
		</div>