about.ctp
1.54 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
<div class="index">
<?php
$softwareName = "LABINVENT";
echo '<h2><i class="icon-idea"></i> A PROPOS DU LOGICIEL ' . $softwareName . '</h2>';
echo <<<"EOD"
<pre>
Ce logiciel sert a inventorier le matériel d'un laboratoire (à l'origine, celui de l'IRAP).
COPYRIGHT (C) 2012-2019 IRAP (Institut de Recherche en Astrophysique et Planetologie) Toulouse - France
Auteurs :
- Upsilon (micro-entreprise Université Toulouse 3 Paul Sabatier), réalisation version initiale 2012
- Marielle Lacombe (mlacombe@obs-mip.fr), chef de projet
- Elodie Bourrec (ebourrec@irap.omp.eu), administration base de données
- Etienne Pallier (epallier@irap.omp.eu), développement
Licence GPL (http://www.gnu.org/copyleft/gpl.html)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
See http://www.gnu.org/licenses
</pre>
EOD;
echo '<br/>';
echo '<a href="' . 'https://tinyurl.com/labinvent">Documentation générale</a>';
echo '<br/><br/>';
echo '<a href="' . $this->request->webroot . 'webroot/doc/userguide/labinvent2_userguide.pdf">Guide utilisateur</a>';
?>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
</div>