|
';
echo $this->Html->link('Configuration générale de l\'application', [
'controller' => 'configurations',
'action' => 'view',
1
]);
echo ' | ';
endif;
if (in_array($role, [
'Administration',
'Administration Plus',
'Super Administrateur'
])) {
echo '';
echo $this->Html->link('Gérer le contenu variable de l\'application', [
'controller' => 'pages',
'action' => 'tools_sm'
]);
echo ' |
';
}
echo '';
echo $this->Html->link('Gérer les utilisateurs privilégiés', [
'controller' => 'users',
'sort' => 'nom'
]);
echo ' |
';
if ($role == 'Super Administrateur') :
echo '';
echo $this->Html->link('Gérer les fichiers', [
'controller' => 'documents',
'action' => 'index'
]);
echo ' |
';
endif;
echo '';
echo $this->Html->link('Export de la liste des materiels actifs (format CSV)', [
'controller' => 'materiels',
'action' => 'export'
]);
echo ' |
';
echo '';
echo $this->Html->link('Voir les Droits des utilisateurs (ACLs)', [
'controller' => 'pages',
'action' => 'acls'
]);
echo ' |
';
echo '';
echo $this->Html->link('Etiqueteuse', [
'controller' => 'pages',
'action' => 'printers'
]);
echo ' |
';
if ($role == 'Super Administrateur') :
echo '';
echo $this->Html->link('Voir les informations sur le système', [
'controller' => 'pages',
'action' => 'infos'
]);
echo ' |
';
/*
* Mode debug
*/
echo '';
if ($configuration->mode_debug) {
echo $this->Form->postLink("Stopper le mode DEBUG", [
'controller' => 'configurations',
'action' => 'debugOff'
], [
'confirm' => __('Êtes-vous sur ?')
]);
} else {
echo $this->Form->postLink("Passer en mode DEBUG", [
'controller' => 'configurations',
'action' => 'debugOn'
], [
'confirm' => __('Êtes-vous sur ?')
]);
}
echo ' |
';
/*
* Mode install
*/
echo '';
if ($configuration->mode_install) {
echo $this->Form->postLink("Stopper le mode INSTALL", [
'controller' => 'configurations',
'action' => 'installOff'
], [
'confirm' => __('Êtes-vous sur ?')
]);
} else {
echo $this->Form->postLink("Passer en mode INSTALL", [
'controller' => 'configurations',
'action' => 'installOn'
], [
'confirm' => __('Êtes-vous sur ?')
]);
}
echo ' |
';
endif;
?>