Blame view

src/Template/Pages/home_app.ctp 2.23 KB
4260780b   Alexandre   Migration vue, co...
1
2
3
4

<div class="index">
	<h2><i class="icon-home"></i> Accueil</h2>

82721df2   Thibaud Ajas   Modif des mails g...
5
	<p>Bienvenue sur l'inventaire administratif et technique <?= $configuration->labPresent.' <b>'.$configuration->labName ?></b>.</p>
4260780b   Alexandre   Migration vue, co...
6
7

	<?php
82721df2   Thibaud Ajas   Modif des mails g...
8
9
10
11
		//Utilisateur connecté
		echo '<p>Vous êtes connecté en tant que <b>' . $username . '</b> ';
		echo 'et avec le niveau d\'authentification <b>'.$role.'</b>.';
		echo '<p>';
602e9d7a   Alexandre   Version: 2.5.5.0
12
		
82721df2   Thibaud Ajas   Modif des mails g...
13
14
15
16
17
		echo '<table cellpadding="0" cellspacing="0" style="width: 800px;">';
		echo '<tr><th></th></tr>';
		echo '<tr><td> '.$this->Html->link('Voir mes matériels', [
				'controller' => 'materiels', 'action' => 'index', 'MY' => $username]).' </td></tr>';
		echo '</table>';
602e9d7a   Alexandre   Version: 2.5.5.0
18
		
82721df2   Thibaud Ajas   Modif des mails g...
19
20
21
22
23
24
25
26
27
28
		//Utilisateur admin/super admin
		if (in_array($role, ['Administration', 'Administration Plus'])) {
				echo '<table cellpadding="0" cellspacing="0" style="width: 800px;">';
				echo '<tr><th></th></tr>';
				echo '<tr><td> '.$this->Html->link('Voir les matériels à valider', [
								'controller' => 'materiels', 'action' => 'index', 'CREATED']).' </td></tr>';
				echo '<tr><td> '.$this->Html->link('Voir les matériels à sortir de l\'inventaire', [
								'controller' => 'materiels', 'action' => 'index', 'TOBEARCHIVED']).' </td></tr>';
				echo '</table>';
		}
302307ec   Alexandre   Version: 2.4.7.0
29
30
31
32
33
		
		//Utilisateur responsable
		if ($role == 'Responsable') {
			echo '<table cellpadding="0" cellspacing="0" style="width: 800px;">';
			echo '<tr><th></th></tr>';
602e9d7a   Alexandre   Version: 2.5.5.0
34
35
36
37
38
39
			echo '<tr><td> '.$this->Html->link('Voir les matériels  dont je suis responsable', [
					'controller' => 'materiels', 'action' => 'index', 'GM' => $userConnected->groupes_metier_id, 'GT' => $userConnected->groupe_thematique_id]).' </td></tr>';
			echo '<tr><td> '.$this->Html->link('Voir les matériels à valider  dont je suis responsable', [
					'controller' => 'materiels', 'action' => 'index', 'GMV' => $userConnected->groupes_metier_id, 'GTV' => $userConnected->groupe_thematique_id]).' </td></tr>';
			echo '<tr><td> '.$this->Html->link('Voir les suivis des materiels dont je suis responsable', [
					'controller' => 'suivis', 'action' => 'index', 'GM' => $userConnected->groupes_metier_id, 'GT' => $userConnected->groupe_thematique_id]).' </td></tr>';
302307ec   Alexandre   Version: 2.4.7.0
40
41
			echo '</table>';
		}
4260780b   Alexandre   Migration vue, co...
42
43
44
45
46
47
48
	?>

</div>

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