Menu
- =$this->Html->link(__(' Accueil'), ['controller' => 'pages','action' => 'home'], ['escape' => false]);?>
- =$this->Html->link(' Nouveau matériel', ['controller' => 'Materiels','action' => 'add'], ['escape' => false]);?>
- =$this->Html->link(' Mes matériels', ['controller' => 'Materiels', 'action' => 'index', 'MY' => $username ], ['escape' => false]);?>
- =$this->Html->link(__(' Rechercher un matériel'), ['controller' => 'materiels','action' => 'find'], ['escape' => false]);?>
- =$this->Html->link(__(' Rechercher un suivi'), ['controller' => 'suivis','action' => 'find'], ['escape' => false]);?>
- =$this->Html->link(__(' Rechercher un emprunt'), ['controller' => 'emprunts','action' => 'find'], ['escape' => false]);?>
- =$this->Html->link(__(' Liste des matériels'), ['controller' => 'Materiels','action' => 'index'], ['escape' => false])?>
- =$this->Html->link(__(' Liste des suivis'), ['controller' => 'Suivis','action' => 'index'], ['escape' => false])?>
- =$this->Html->link(__(' Liste des emprunts'), ['controller' => 'Emprunts','action' => 'index'], ['escape' => false])?>
';
echo $this->Html->link(' Voir les autres listes', [
'controller' => 'pages',
//'action' => 'tools_menu_sm'
'action' => 'tools_sm'
], [
'escape' => false
]);
echo '';
?>
- =$this->Html->link(__(' Outils'), ['controller' => 'pages','action' => 'tools'], ['escape' => false])?>
- =$this->Html->link(__(' A propos'), ['controller' => 'pages','action' => 'about'], ['escape' => false])?>
Recherche (matériels)';
// Search function
echo $this->Form->create('Materiel', [
'url' => '/materiels/find'
]);
echo '';
echo $this->Form->submit('Chercher', [
'name' => 'MaterielSAll',
'id' => 'MaterielSAll',
'style' => 'margin: 0px;'
]);
echo $this->Form->end();
}
?>