index.ctp 1.92 KB

<div class="fournisseurs index">

	<?php echo '<h2><i class="icon-list"></i> Liste des Fournisseurs</h2>'; ?>
	
	<?=$this->element('button_add'); ?>
    
    <table cellpadding="0" cellspacing="0" style="width: 270px;">
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
			</tr>
		</thead>
		<tbody>
            <?php
            
foreach ($fournisseurs as $fournisseur) :
                
                if ($fournisseur->id != 9) {
                    ?>
            
            
            <tr>
				<td class="actions" style="padding: 6px 0; text-align: left;">             
                    <?php if (in_array($role, ['Administration','Administration Plus', 'Super Administrateur'])) { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $fournisseur->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Administration','Super Administrateur'])) { ?>
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $fournisseur->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $fournisseur->nom)]) ?>
                	<?php } ?>
                </td>

				<td class="smallText"><?= $this->Html->link($fournisseur->nom, ['action' => 'view', $fournisseur->id]) ?></td>

			</tr>
            <?php
                
}
            endforeach
            ;
            ?>
        </tbody>
	</table>

	<?php echo $this->element('pagination_with_first_and_last'); ?> 
        
</div>

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

echo $this->element('menu_index', [
    'pluralHumanName' => 'Fournisseurs',
    'singularHumanName' => 'Fournisseur'
])?>
		</div>
-->