default.ctp
3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?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
*/
$cakeDescription = 'Labinvent 2';
?>
<!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">
<head>
<?=$this->Html->charset()?>
<?=$this->Html->css('smoothness')?>
<?=$this->Html->script('jquery-1.5.2')?>
<?=$this->Html->script('jquery-1.8.12')?>
<?=$this->Html->script('script')?>
<?=$this->Html->script('DatepickerConfig')?>
<?=$this->Html->script('onTabHover')?>
<title>
<?=$cakeDescription?>
</title>
<?=$this->Html->meta('icon')?>
<?=$this->Html->css('inventirap')?>
<?=$this->Html->css('font-awesome')?>
<?=$this->Html->script('jquery.min')?>
<?=$this->fetch('meta')?>
<?=$this->fetch('css')?>
<?=$this->fetch('script')?>
<style>
#footer a, #footer p, #footer font { font-size: x-small; }
</style>
</head>
<body>
<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
if (isset($username) && $username != " ") {
echo 'Bienvenue ' . $username . '<br/>';
echo $role . '<br/>';
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>
<div id="content">
<?=$this->Flash->render()?>
<?=$this->Flash->render('auth')?>
<?=$this->fetch('content')?>
</div>
<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
href="mailto:inventirap@irap.omp.eu">LABINVENT-MAILING-LIST</a>
</p>
<?php
echo '
<p>
(<a href="https://projects.irap.omp.eu/projects/inventirap/activity">Activité récente sur le projet</a>)
 
(<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>)
</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) -->
<font color="black">VERSION 2.6.12 (27/06/2017)</font>
<br/>
<font color="black"><a href="<?php
echo $this->request->webroot?>webroot/doc/userguide/labinvent2_userguide.pdf" onclick="window.open(this.href); return false;">Documentation utilisateurs</a> | <a href="https://projects.irap.omp.eu/projects/inventirap/wiki/Installation" onclick="window.open(this.href); return false;">Wiki installation</a></font>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>