Blame view

src/Template/GroupesMetiers/index.ctp 2.02 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
<div class="groupesMetiers index">
e3633c13   Alexandre   Version: 2.4.2.23
3
<?php echo '<h2><i class="icon-list"></i> Liste des '.$configuration->nom_groupe_metier.'</h2>'; ?>
b2dade50   Prugniel   modifs Jeanne boo...
4
    <table style="border-collapse: separate; border-spacing: 0; width: 270px;">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
10
11
12
13
14
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
				<th><?= $this->Paginator->sort('description', 'Description') ?></th>

			</tr>
		</thead>
		<tbody>
            <?php
0ea7290f   Alexandre   Version: 2.5.4.2
15
            
63c3cb16   epallier   Nombreux petits b...
16
17
18
19
20
21
foreach ($groupesMetiers as $groupesMetier) :
                if ($groupesMetier->nom != 'N/A') {
                    ?>
            <tr>

				<td class="actions" style="padding: 6px 0; text-align: left;">         
08d8dbb0   Alexandre   Version: 2.4.2.14
22
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
23
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $groupesMetier->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
24
25
26
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
27
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $groupesMetier->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesMetier->id)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
28
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
29
                </td>
63c3cb16   epallier   Nombreux petits b...
30
31
				<td class="smallText"><?= $this->Html->link($groupesMetier->nom, ['action' => 'view', $groupesMetier->id]) ?></td>
				<td class="smallText"><?= h($groupesMetier->description) ?></td>
0ea7290f   Alexandre   Version: 2.5.4.2
32
33


96b028a1   Alexandre   Migration de tout...
34

63c3cb16   epallier   Nombreux petits b...
35
36
37
38
39
40
			</tr>
            <?php
                }
            endforeach
            ;
            ?>
6c4edfa3   Alexandre   First Commit LabI...
41
        </tbody>
63c3cb16   epallier   Nombreux petits b...
42
	</table>
96b028a1   Alexandre   Migration de tout...
43

9478e982   Etienne Pallier   refactorisation d...
44
45
	<?php echo $this->element('pagination'); ?> 
    
6c4edfa3   Alexandre   First Commit LabI...
46
</div>
4260780b   Alexandre   Migration vue, co...
47

b2dade50   Prugniel   modifs Jeanne boo...
48
<!--
63c3cb16   epallier   Nombreux petits b...
49
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
50
51
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
52
53
54
55
56

echo $this->element('menu_index', [
    'pluralHumanName' => $configuration->nom_groupe_metier . 's',
    'singularHumanName' => $configuration->nom_groupe_metier
])?>
4260780b   Alexandre   Migration vue, co...
57
		</div>
b2dade50   Prugniel   modifs Jeanne boo...
58
-->