1 | <?php |
---|
2 | |
---|
3 | // aula_options.php |
---|
4 | |
---|
5 | // $LastChangedRevision: 18024 $ |
---|
6 | // $LastChangedBy: pierrekuhn82@gmail.com $ |
---|
7 | // $LastChangedDate: 2008-01-15 11:46:32 +0000 (Tue, 15 Jan 2008) $ |
---|
8 | |
---|
9 | /***************************************************** |
---|
10 | Copyright (C) 2008 Christian PAULUS |
---|
11 | cpaulus@quesaco.org - http://www.quesaco.org/ |
---|
12 | /***************************************************** |
---|
13 | |
---|
14 | This file is part of AuLa. |
---|
15 | |
---|
16 | AuLa is free software; you can redistribute it and/or modify |
---|
17 | it under the terms of the GNU General Public License as published by |
---|
18 | the Free Software Foundation; either version 2 of the License, or |
---|
19 | (at your option) any later version. |
---|
20 | |
---|
21 | AuLa is distributed in the hope that it will be useful, |
---|
22 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
24 | GNU General Public License for more details. |
---|
25 | |
---|
26 | You should have received a copy of the GNU General Public License |
---|
27 | along with AuLa; if not, write to the Free Software |
---|
28 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
29 | |
---|
30 | /***************************************************** |
---|
31 | |
---|
32 | Ce fichier est un des composants de AuLa. |
---|
33 | |
---|
34 | AuLa est un programme libre, vous pouvez le redistribuer et/ou le modifier |
---|
35 | selon les termes de la Licence Publique Generale GNU publiée par |
---|
36 | la Free Software Foundation (version 2 ou bien toute autre version ultérieure |
---|
37 | choisie par vous). |
---|
38 | |
---|
39 | AuLa est distribué car potentiellement utile, mais SANS AUCUNE GARANTIE, |
---|
40 | ni explicite ni implicite, y compris les garanties de commercialisation ou |
---|
41 | d'adaptation dans un but spécifique. Reportez-vous à la Licence Publique Générale GNU |
---|
42 | pour plus de détails. |
---|
43 | |
---|
44 | Vous devez avoir reçu une copie de la Licence Publique Generale GNU |
---|
45 | en meme temps que ce programme ; si ce n'est pas le cas, ecrivez à la |
---|
46 | Free Software Foundation, Inc., |
---|
47 | 59 Temple Place, Suite 330, Boston, MA 02111-1307, États-Unis. |
---|
48 | |
---|
49 | *****************************************************/ |
---|
50 | |
---|
51 | define("_AULA_PREFIX", "aula"); |
---|
52 | define("_AULA_DELAY_MINUTES", (15 * 60)); |
---|
53 | |
---|
54 | |
---|
55 | ?> |
---|