Commit 5e70d8b0ca482da83a9d23a3449675cc665dca85
1 parent
8b709355
Exists in
master
and in
3 other branches
Menu outils #3539
Showing
2 changed files
with
45 additions
and
25 deletions
Show diff stats
src/Template/Pages/tools.ctp
... | ... | @@ -19,31 +19,11 @@ |
19 | 19 | echo '</td></tr>'; |
20 | 20 | |
21 | 21 | echo '<tr><td>'; |
22 | - echo $this->Html->link('Configuration de lapplication', ['controller' => 'configuration', 'action' => 'view', 0]); | |
22 | + echo $this->Html->link('Configuration générale de lapplication', ['controller' => 'configuration', 'action' => 'view', 0]); | |
23 | 23 | echo '</td></tr>'; |
24 | 24 | |
25 | 25 | echo '<tr><td>'; |
26 | - echo $this->Html->link('Gérer les Catégories', ['controller' => 'pages', 'action' => 'tools_cat']); | |
27 | - echo '</td></tr>'; | |
28 | - | |
29 | - echo '<tr><td>'; | |
30 | - echo $this->Html->link('##Gérer les sites', ['controller' => 'sites', 'sort' => 'nom']); | |
31 | - echo '</td></tr>'; | |
32 | - | |
33 | - echo '<tr><td>'; | |
34 | - echo $this->Html->link('##Gérer les organismes', ['controller' => 'organismes', 'sort' => 'nom']); | |
35 | - echo '</td></tr>'; | |
36 | - | |
37 | - echo '<tr><td>'; | |
38 | - echo $this->Html->link('##Gérer les types de suivis', ['controller' => 'type_suivis', 'sort' => 'nom']); | |
39 | - echo '</td></tr>'; | |
40 | - | |
41 | - echo '<tr><td>'; | |
42 | - echo $this->Html->link('##Gérer les groupes thématiques', ['controller' => 'groupes_thematiques', 'sort' => 'nom']); | |
43 | - echo '</td></tr>'; | |
44 | - | |
45 | - echo '<tr><td>'; | |
46 | - echo $this->Html->link('##Gérer les groupes métiers', ['controller' => 'groupes_metiers', 'sort' => 'nom']); | |
26 | + echo $this->Html->link('Gérer le contenu variable de l\'application', ['controller' => 'pages', 'action' => 'tools_sm']); | |
47 | 27 | echo '</td></tr>'; |
48 | 28 | |
49 | 29 | echo '<tr><td>'; |
... | ... | @@ -65,9 +45,7 @@ |
65 | 45 | echo $this->Form->postLink("Passer en mode INSTALL", ['controller' => 'materiels', 'action'=>'installOn'], ['confirm' => __('Êtes-vous sur ?')]); |
66 | 46 | } |
67 | 47 | echo '</td></tr>'; |
68 | - | |
69 | - echo '@TODO: Il semblerait nécessaire de rassembler les liens marqué d\'un # afin d\'aérer le menu outils....'; | |
70 | - | |
48 | + | |
71 | 49 | |
72 | 50 | ?> |
73 | 51 | </table> | ... | ... |
... | ... | @@ -0,0 +1,42 @@ |
1 | +<div class="index"> | |
2 | +<h2><i class="icon-wrench"></i> Outils - Gérer le contenu variable</h2> | |
3 | +<table cellpadding="0" cellspacing="0"> | |
4 | +<tr><th></th></tr> | |
5 | +<?php | |
6 | + | |
7 | + | |
8 | + | |
9 | +echo '<tr><td>'; | |
10 | +echo $this->Html->link('Gérer les Catégories', ['controller' => 'pages', 'action' => 'tools_cat']); | |
11 | +echo '</td></tr>'; | |
12 | + | |
13 | +echo '<tr><td>'; | |
14 | +echo $this->Html->link('Gérer les sites', ['controller' => 'sites', 'sort' => 'nom']); | |
15 | +echo '</td></tr>'; | |
16 | + | |
17 | +echo '<tr><td>'; | |
18 | +echo $this->Html->link('Gérer les organismes', ['controller' => 'organismes', 'sort' => 'nom']); | |
19 | +echo '</td></tr>'; | |
20 | + | |
21 | +echo '<tr><td>'; | |
22 | +echo $this->Html->link('Gérer les types de suivis', ['controller' => 'type_suivis', 'sort' => 'nom']); | |
23 | +echo '</td></tr>'; | |
24 | + | |
25 | +echo '<tr><td>'; | |
26 | +echo $this->Html->link('Gérer les groupes thématiques', ['controller' => 'groupes_thematiques', 'sort' => 'nom']); | |
27 | +echo '</td></tr>'; | |
28 | + | |
29 | +echo '<tr><td>'; | |
30 | +echo $this->Html->link('Gérer les groupes métiers', ['controller' => 'groupes_metiers', 'sort' => 'nom']); | |
31 | +echo '</td></tr>'; | |
32 | + | |
33 | + | |
34 | + | |
35 | + | |
36 | +?> | |
37 | + </table> | |
38 | +</div> | |
39 | + | |
40 | + <div class="actions"> | |
41 | + <?php echo $this->element('menu') ?> | |
42 | + </div> | ... | ... |