view.ctp 2.29 KB

<div class="categories view">
    <h2>Détail catégorie</h2>
    <table style="margin-bottom: 30px;">
    
    	<tr><th style="width: 250px;"></th><th></th></tr>
    	
    	<?php 
    	if (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur'])) {
    	echo $this->Html->link(__('<i class="icon-pencil"></i> Editer cet catégorie'),
    				['action' => 'edit', $category->id],
    				['escape' => false,'onclick' => 'return true;']
    				);
    	}
    	
    	if (in_array($role, ['Super Administrateur'])) {
    	echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cet 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]) : '');
    	

    	?>

    </table>
    
    
        <h3 id="t_suivis" style="cursor: pointer;">
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i> 
			<span style="text-decoration: underline;">Sous-Catégorie associé (<?= $sousCategories->count()?>)</span>
		</h3>
		<div id="suivis" style="margin-bottom: 20px;">

        <?php if (!empty($sousCategories)) { ?>
        <table> 
		<tr> 
			<th><?= __('Nom') ?></th>
            <th style="width:50px;"><?= __('Détail') ?></th>
		</tr> 	
		<?php foreach ($sousCategories as $sous_category): ?>
		<tr>
		    <td><?= h($sous_category->nom) ?></td>

            <td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'SousCategories', 'action' => 'view', $sous_category->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
       </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucune sous-catégorie lié à cette catégorie.'; } ?>
    </div>
    
</div>

    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_view', 
			[ 'pluralHumanName' => 'Catégories',
			'singularHumanName' => 'Catégorie',
			'lien' => $category->id ]) ?>
		</div>