Blame view

src/Template/Layout/default.ctp 3.31 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @since         0.10.0
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 */
3ab8435b   Alexandre   Version: 2.4.6.4
15
$cakeDescription = 'Labinvent 2';
6c4edfa3   Alexandre   First Commit LabI...
16
?>
4260780b   Alexandre   Migration vue, co...
17
18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
6c4edfa3   Alexandre   First Commit LabI...
19
<head>
4260780b   Alexandre   Migration vue, co...
20
21
    <?= $this->Html->charset()?>    
	<?= $this->Html->css('smoothness')?>
64fba1a2   Alexandre   Base du projet : ...
22
23
	<?= $this->Html->script('jquery-1.5.2') ?>
	<?= $this->Html->script('jquery-1.8.12') ?>
4260780b   Alexandre   Migration vue, co...
24
	<?= $this->Html->script('script') ?>
64fba1a2   Alexandre   Base du projet : ...
25
26
27
28
29
	<?= $this->Html->script('DatepickerConfig') ?>
<title>
        <?= $cakeDescription?>
</title>
    <?= $this->Html->meta('icon')?>
4260780b   Alexandre   Migration vue, co...
30
31
    <?= $this->Html->css('inventirap')?>
    <?= $this->Html->css('font-awesome')?>
64fba1a2   Alexandre   Base du projet : ...
32
33
34
35
	<?= $this->Html->script('jquery.min') ?>
    <?= $this->fetch('meta')?>
    <?= $this->fetch('css')?>
    <?= $this->fetch('script')?>
6c4edfa3   Alexandre   First Commit LabI...
36
37
</head>
<body>
64fba1a2   Alexandre   Base du projet : ...
38
39
40
41
42
43
44
45
46
47
48

	<div id="container">
		<div id="header">
		

<?= $this->Html->image('logo_software.jpg', ['alt' => 'Logo de l\'application', 'border' => '0', 'height' => '80px', 'url' => '/']) ?>
			
			<div class="user">
				
				
				<?php
e1f6c5b7   Alexandre   Version: 2.3.0.0
49
				 if (isset($username) && $username != " ") {
19798ef9   Alexandre   Mode_install, maj...
50
				 	echo 'Bienvenue '.$username.'<br/>';
cb0ff3ca   Alexandre   Version: 2.4.3.1
51
				 	echo $role.'<br/>';
64fba1a2   Alexandre   Base du projet : ...
52
53
54
55
56
57
58
59
60
61
62
63
				 	echo $this->Html->link('Se déconnecter', ['controller' => 'Users', 'action' => 'logout']);
				 }
				 else {
				 	echo 'Bienvenue invité<br/>';
				 	echo $this->Html->link('Se connecter', ['controller' => 'Users', 'action' => 'login']);
				 }
				 
				?>
				
			</div>
		</div>
    
0e5846aa   Alexandre   Css bouton valide...
64

183ce554   Alexandre   Ajout de test, su...
65
    <div id="content">
0e5846aa   Alexandre   Css bouton valide...
66
67
        <?= $this->Flash->render()?>
   		<?= $this->Flash->render('auth') ?>
64fba1a2   Alexandre   Base du projet : ...
68
        <?= $this->fetch('content')?>
6c4edfa3   Alexandre   First Commit LabI...
69
    </div>
64fba1a2   Alexandre   Base du projet : ...
70
71
72
73
74
75
76
77
78
79
80
81
82


		<div id="footer">
			<table>
				<tr>
					<td>
					<?= $this->Html->image('logo_entity.jpg', ['alt' => 'Logo du labo', 'border' => '0', 'height' => '50px']) ?>
				</td>
					<td><br /> <a href="http://cakephp.org">Baked with CAKEPHP</a></td>

					<td id="bugreport"><i>
							<p>
								Merci de communiquer remarques et bugs à <a
3ab8435b   Alexandre   Version: 2.4.6.4
83
									href="mailto:inventirap@irap.omp.eu">LABINVENT-MAILING-LIST</a>
64fba1a2   Alexandre   Base du projet : ...
84
85
86
87
88
89
							</p>
					<?php
					echo '
						<p>
						(<a href="https://projects.irap.omp.eu/projects/inventirap/activity">Activité récente sur le projet</a>)
						&nbsp;&nbsp;&nbsp
d58b8953   Alexandre   Version: 2.4.4.0
90
						(<a href="https://projects.irap.omp.eu/projects/inventirap/roadmap?tracker_ids[]=1&tracker_ids[]=2&tracker_ids[]=4&tracker_ids[]=5&tracker_ids[]=6&tracker_ids[]=7&tracker_ids[]=8&tracker_ids[]=9#version_2.04_-_Impl%C3%A9mentation_des_ACL_%28droits%29">ROADMAP : Activité restant à réaliser</a>)
64fba1a2   Alexandre   Base du projet : ...
91
92
93
94
95
96
						</p>
						';
					?>
					</i></td>
					<td id="version">
						<!-- VERSION M.m.f.b (version (M)ajeure, version (m)ineure, numero de nouvelle (f)onctionnalite, numero de (b)ugfix) -->
f4e6dc02   Alexandre   Version: 2.5.2.0
97
						<font color="black">VERSION 2.5.2.0 (29/06/2016)</font>
64fba1a2   Alexandre   Base du projet : ...
98
99
100
101
102
103
104
					</td>
				</tr>
			</table>
		</div>

	</div>

6c4edfa3   Alexandre   First Commit LabI...
105
106
</body>
</html>