tools_cat.ctp
737 Bytes
<div class="index">
<h2><i class="icon-wrench"></i> 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>