view.ctp 2.95 KB

<div class="typeSuivis view">

	<h2>Détail du type de suivi</h2>

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

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

        // - Régulier ?
        $displayElement(__('Suivi Régulier ?'), h($typeSuivi->is_regular)?"Oui":"Non");

        // - Métrologie ?
        $displayElement(__('Suivi lié à la Métrologie ?'), h($typeSuivi->is_metro)?"Oui":"Non");
        
        ?>

    </table>


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

        <?php if (!empty($suivis)) { ?>

            <table>

    			<tr>
    				<th><?= __('Nom') ?></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 type.';
        ?>

    </div>

</div>

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

echo $this->element('menu_view', [
    'pluralHumanName' => 'Types Suivis',
    'singularHumanName' => 'Type Suivi',
    'lien' => $typeSuivi->id
])?>
		</div>
-->