view.ctp 4.45 KB


<div class="groupesMetiers view">
	<h2>Détail groupes métier</h2>

	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
    
    	<?php
    if (in_array($role, [
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce ' . $configuration->nom_groupe_metier), [
            'action' => 'edit',
            $groupesMetier->id
        ], [
        	'style' => 'margin-right: 40px; display: inline-block',
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce ' . $configuration->nom_groupe_metier), [
            'action' => 'delete',
            $groupesMetier->id
        ], [
            'style' => 'display: inline-block',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesMetier->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($groupesMetier->nom));
    $displayElement(__('Description'), h($groupesMetier->description));
    ?>


    </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;">Utilisateurs associées (<?= $utilisateurs->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">

        <?php if (!empty($utilisateurs)) { ?>
        <table>
			<tr>
				<th><?= __('Nom') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
		<?php foreach ($utilisateurs as $utilisateur): ?>
		<tr>

				<td><?= $this->Html->link(h($utilisateur->nom), ['controller' => 'Users', 'action' => 'view', h($utilisateur->id)]); ?></td>

				<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Users', 'action' => 'view', $utilisateur->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
			</tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun utilisateur lié à ce '.$configuration->nom_groupe_metier; } ?>
    </div>


	<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;">Suivis associées (<?= $suivis->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">

        <?php if (!empty($suivis)) { ?>
        <table>
			<tr>
				<th><?= __('N° suivi') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
		<?php foreach ($suivis as $suivi): ?>
		<tr>

				<td><?= $this->Html->link('Suivi '.h($suivi->id), ['controller' => 'Suivis', 'action' => 'view', h($suivi->id)]); ?></td>

				<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Suivis', 'action' => 'view', $suivi->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
			</tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi lié à ce '.$configuration->nom_groupe_metier; } ?>
    </div>



	<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;">Materiels associées (<?= $materiels->count()?>)</span>
	</h3>
	<div id="suivis" style="margin-bottom: 20px;">

        <?php if (!empty($materiels)) { ?>
        <table>
			<tr>
				<th><?= __('Désignation') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
		<?php foreach ($materiels as $materiel): ?>
		<tr>

				<td><?= $this->Html->link(h($materiel->designation), ['controller' => 'Materiels', 'action' => 'view', h($materiel->id)]); ?></td>

				<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Materiels', 'action' => 'view', $materiel->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
			</tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun matériel lié à ce '.$configuration->nom_groupe_metier; } ?>
    </div>




</div>

<!--
<div class="actions">
			<php echo $this->element('menu') ?>
			<php

echo $this->element('menu_view', [
    'pluralHumanName' => $configuration->nom_groupe_metier . 's',
    'singularHumanName' => $configuration->nom_groupe_metier,
    'lien' => $groupesMetier->id
])?>
		</div>
-->