Blame view

src/Template/Pages/tools_cat.ctp 746 Bytes
8b709355   Alexandre   Affichage du cont...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

<div class="index">
	<h2><i class="icon-wrench"></i> Outils - Gérer les Catégories</h2>
	<table cellpadding="0" cellspacing="0">
		<tr><th></th></tr>
		<?php
		
			
			echo '<tr><td>';
			echo $this->Html->link('Gérer les domaines', ['controller' => 'sur_categories', 'sort' => 'nom']);
			echo '</td></tr>';
			
			echo '<tr><td>';
			echo $this->Html->link('Gérer les catégories', ['controller' => 'categories', 'sort' => 'nom']);
			echo '</td></tr>';
			
			echo '<tr><td>';
			echo $this->Html->link('Gérer les sous-catégories', ['controller' => 'sous_categories', 'sort' => 'nom']);
			echo '</td></tr>';
							
			
              
		?>
	</table>	
</div>

    	<div class="actions">
			<?php echo $this->element('menu') ?>
		</div>