tools_menu_sm.ctp 2.38 KB
<div class="index">
	<h2>
		<i class="icon-wrench"></i> Voir les autres listes
	</h2>
	<table style="border-collapse: separate; border-spacing: 0;">
		<tr>
			<th></th>
		</tr>
<?php
echo '<tr><td>';
echo $this->Html->link('Liste des Catégories', [
    'controller' => 'pages',
    'action' => 'tools_menu_cat'
]);
echo '</td></tr>';

//On restreint l'affichage sur les champs qu'un utilisateur n'a besoin de modifier
if (! $USER_IS_UTILISATEUR) {
	
	echo '<tr><td>';
	echo $this->Html->link('Liste des Sites', [
			'controller' => 'sites',
			'sort' => 'nom'
	]);
	echo '</td></tr>';
	
	echo '<tr><td>';
	echo $this->Html->link('Liste des Organismes', [
			'controller' => 'organismes',
			'sort' => 'nom'
	]);
	echo '</td></tr>';
}


echo '<tr><td>';
echo $this->Html->link('Liste des types de Suivis', [
    'controller' => 'type_suivis',
    'sort' => 'nom'
]);
echo '</td></tr>';

//On restreint l'affichage sur les champs qu'un utilisateur n'a besoin de modifier
if (! $USER_IS_UTILISATEUR) {
	
	
	$names = explode(" ", $configuration->nom_groupe_thematique);
	if (isset($names[1])) {
		$nom = $names[0] . 's ' . $names[1] . 's';
	} else {
		$nom = $names[0] . 's';
	}
	echo '<tr><td>';
	echo $this->Html->link('Liste des ' . $nom, [
			'controller' => 'groupes_thematiques',
			'sort' => 'nom'
	]);
	echo '</td></tr>';
	
	$names = explode(" ", $configuration->nom_groupe_metier);
	if (isset($names[1])) {
		$nom = $names[0] . 's ' . $names[1] . 's';
	} else {
		$nom = $names[0] . 's';
	}
	echo '<tr><td>';
	echo $this->Html->link('Liste des ' . $nom, [
			'controller' => 'groupes_metiers',
			'sort' => 'nom'
	]);
	echo '</td></tr>';
	
}

echo '<tr><td>';
echo $this->Html->link('Liste des types de Documents', [
    'controller' => 'type_documents',
    'sort' => 'nom'
]);
echo '</td></tr>';


echo '<tr><td>';
echo $this->Html->link('Liste des Fournisseurs', [
    'controller' => 'fournisseurs',
    'sort' => 'nom'
]);
echo '</td></tr>';


// METROLOGIE MODULE ONLY
if ($configuration->metrologie) {
//if (! $USER_IS_UTILISATEUR) {
    
	echo '<tr><td>';
	echo $this->Html->link('Liste des Unités', [
			'controller' => 'unites',
			'sort' => 'nom'
	]);
	echo '</td></tr>';
	
	echo '<tr><td>';
	echo $this->Html->link('Liste des Formules', [
			'controller' => 'formules',
			'sort' => 'nom'
	]);
	echo '</td></tr>';
	
}


?>
	</table>
</div>

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