Blame view

src/Template/Element/menu_index.ctp 1.23 KB
4260780b   Alexandre   Migration vue, co...
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
<h3 style="margin-top: 20px;">
<?php 
/**
 * menu_index.ctp
 * "Outils" menu definiot
 * Buttons add new dom/cat/sscat/groupes/ definition on "outils" menu option.
 */
if (strtolower($pluralHumanName) == "sur categorie") $pluralHumanName="Domaines";
if (strtolower($pluralHumanName) == "sous categorie") $pluralHumanName="Sous-Catégories";
if (strtolower($pluralHumanName) == "categories") $pluralHumanName="Catégories";
echo $pluralHumanName;
?></h3>
<ul>
	<li>
	<?php
			$t = strtolower($singularHumanName);
			
			$t = str_replace('groupes', 'groupe', $t);
			$t = str_replace('thematique', 'thématique', $t);
			$t = str_replace('metier', 'métier', $t);
			$t = str_replace('sur categorie', 'domaine', $t);
			$t = str_replace('sous categorie', 'sous-catégorie', $t);
			$t = str_replace('categorie', 'catégorie', $t);
		
			if(strlen($t) > 12) {
				$t = 'Nouv. '.$t;
			}
			else {
				if(strstr($t, 'catégorie')) {
					$t = ' Nouvelle ' . $t;
				} elseif(strstr($t, 'utilisateur') || strstr($t, 'emprunt')) {
					$t = ' Nouvel ' . $t;
				} else {
					$t = ' Nouveau ' . $t;
				}	
			}
			// Add "+" icone 		
			echo $this->Html->link('<i class="icon-plus"></i> '.$t,
				['action' => 'add'],
				['escape' => false]);
		?>
	</li>
</ul>