tools_cat.ctp 748 Bytes

<div class="index">
	<h2>
		<i class="icon-wrench"></i> Gérer les Catégories
	</h2>
	<table style="border-collapse: separate; border-spacing: 0; width: 270px;">
		<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>
-->