Détail catégorie

Html->link(__(' Editer cette catégorie'), [ 'action' => 'edit', $category->id ], [ 'escape' => false, 'onclick' => 'return true;' ]); } if (in_array($role, [ 'Super Administrateur' ])) { echo $this->Form->postLink(__(' Supprimer cette catégorie'), [ 'action' => 'delete', $category->id ], [ 'style' => 'margin-left: 110px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $category->id) ]); } $displayElement(__('Nom'), h($category->nom)); $displayElement(__('Domaine'), $category->has('sur_category') ? $this->Html->link($category->sur_category->nom, [ 'controller' => 'SurCategories', 'action' => 'view', $category->sur_category->id ]) : ''); ?>

Sous-Catégories associées (count()?>)

Html->link(h($sous_category->nom), ['controller' => 'SousCategories', 'action' => 'view', h($sous_category->id)]); ?> Html->link(__(''), ['controller' => 'SousCategories', 'action' => 'view', $sous_category->id], ['escape' => false, 'style' => 'margin:0']) ?>

Materiels associées (count()?>)

Html->link(h($materiel->designation), ['controller' => 'Materiels', 'action' => 'view', h($materiel->id)]); ?> Html->link(__(''), ['controller' => 'Materiels', 'action' => 'view', $materiel->id], ['escape' => false, 'style' => 'margin:0']) ?>
element('menu') ?> element('menu_view', [ 'pluralHumanName' => 'Catégories', 'singularHumanName' => 'Catégorie', 'lien' => $category->id ])?>