index_groups.ctp
3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
// Variables passées par le controleur
/*
$group_type1 = 'thematique';
$group_type2 = 'thématique';
$group_type1 = 'metier';
$group_type2 = 'métier';
*/
$group_type1 = $group_type1;
$group_type2 = $group_type2;
$lab_website_url = $lab_website_url;
$groups = $groups;
?>
<!--
<div class="groupesThematiques index">
-->
<div class="groups index">
<?php
// Nom du groupe au pluriel (chaque mot)
//echo '<h2><i class="icon-list"></i> Liste des '.$configuration->nom_groupe_thematique.'s</h2>';
$group_type_name = $configuration->{'nom_groupe_'.$group_type1};
$words = explode(' ',$group_type_name);
$group_type_name_plural = '';
foreach($words as $word) $group_type_name_plural .= $word.'s ';
echo "<h2><i class='icon-list'></i> Liste des $group_type_name_plural</h2>";
// Si une url est donnée vers la page des Groupes thématiques sur le site web du labo, on l'affiche
if ($lab_website_url)
echo "=> <a href=$lab_website_url>Groupes {$group_type2}s sur le site web du laboratoire</a><br/><br/>";
echo $this->element('button_add');
?>
<table style="border-collapse: separate; border-spacing: 0; width: 270px;">
<thead>
<tr>
<th class="actions"><?= __('') ?></th>
<!-- Pas de tri sur les colonnes, inutile
<th><= $this->Paginator->sort('nom', 'Nom') ?></th>
<th><= $this->Paginator->sort('description', 'Description') ?></th>
-->
<th>Nom</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<?php
foreach ($groups as $group) :
//if ($group->nom != 'N/A') {
if ($group->id) {
?>
<tr>
<td class="actions" style="padding: 6px 0; text-align: left;">
<?php
if (in_array($role, ['Administration Plus', 'Super Administrateur']))
echo $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $group->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]);
if (in_array($role, ['Super Administrateur']))
echo $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $group->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer ce groupe ?', $group->id)]);
//echo $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $group->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $group->id)]);
?>
</td>
<td class="smallText"><?= $this->Html->link($group->nom, ['action' => 'view', $group->id]) ?></td>
<?php
// On n'affiche que la 1ère ligne de la description
//$group->description = null;
$description_first_line = explode("\n", $group->description)[0];
//debug($description_short);
//$description_short = $description_short[0];
?>
<td class="smallText"><?=h($description_first_line)?></td>
</tr>
<?php
} // if
endforeach;
?>
</tbody>
</table>
<?php
// Inutile
//echo $this->element('pagination');
?>
</div>
<!--
<div class="actions">
<php echo $this->element('menu') ?>
<php
echo $this->element('menu_index', [
'pluralHumanName' => $configuration->nom_groupe_thematique . 's',
'singularHumanName' => $configuration->nom_groupe_thematique
])?>
</div>
-->