view.ctp
1.23 KB
<div class="sousCategories view">
<h2>Détail sous-catégorie</h2>
<table style="margin-bottom: 30px;">
<tr><th style="width: 250px;"></th><th></th></tr>
<?php
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer cet sous-catégorie'),
['action' => 'edit', $sousCategory->id],
['escape' => false,'onclick' => 'return true;']
);
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cet sous-catégorie'),
['action' => 'delete', $sousCategory->id],
['style'=>'margin-left: 110px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $sousCategory->id)]
);
$displayElement(__('Nom'), h($sousCategory->nom));
$displayElement(__('Catégorie'), $sousCategory->has('category') ? $this->Html->link($sousCategory->category->nom, ['controller' => 'Categories', 'action' => 'view', $sousCategory->category->id]) : '');
?>
</table>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
<?php echo $this->element('menu_view',
[ 'pluralHumanName' => 'Sous-Catégories',
'singularHumanName' => 'Sous-Catégorie',
'lien' => $sousCategory->id ]) ?>
</div>