-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin_config5.php
163 lines (149 loc) · 6.95 KB
/
admin_config5.php
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
/**
* admin_config5.php
* Interface permettant à l'administrateur la configuration des paramètres pour le module Jours Cycles
* Ce script fait partie de l'application GRR
* Dernière modification : $Date: 2009-04-14 12:59:17 $
* @author Laurent Delineau <[email protected]>
* @copyright Copyright 2003-2008 Laurent Delineau
* @link http://www.gnu.org/licenses/licenses.html
* @package root
* @version $Id: admin_config5.php,v 1.8 2009-04-14 12:59:17 grr Exp $
* @filesource
*
* This file is part of GRR.
*
* GRR 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 2 of the License, or
* (at your option) any later version.
*
* GRR 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.
*
* You should have received a copy of the GNU General Public License
* along with GRR; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* $Log: admin_config5.php,v $
* Revision 1.8 2009-04-14 12:59:17 grr
* *** empty log message ***
*
* Revision 1.7 2009-04-09 14:52:31 grr
* *** empty log message ***
*
* Revision 1.6 2009-02-27 13:28:19 grr
* *** empty log message ***
*
* Revision 1.5 2008-11-16 22:00:58 grr
* *** empty log message ***
*
*
*/
if (!loadSettings())
die("Erreur chargement settings");
// Met à jour dans la BD le champ qui détermine si les fonctionnalités Jours/Cycles sont activées ou désactivées
if (isset($_GET['jours_cycles'])) {
if (!saveSetting("jours_cycles_actif", $_GET['jours_cycles'])) {
echo "Erreur lors de l'enregistrement de jours_cycles_actif ! <br />";
}
}
// Met à jour dans la BD du champ qui détermine si la fonctionnalité "multisite" est activée ou non
if (isset($_GET['module_multisite'])) {
if (!saveSetting("module_multisite", $_GET['module_multisite'])) {
echo "Erreur lors de l'enregistrement de module_multisite ! <br />";
} else {
if ($_GET['module_multisite'] == 'Oui') {
// On crée un site par défaut s'il n'en existe pas
$id_site = grr_sql_query1("select min(id) from ".TABLE_PREFIX."_site");
if ($id_site == -1) {
$sql="INSERT INTO ".TABLE_PREFIX."_site
SET sitecode='1', sitename='site par défaut'";
if (grr_sql_command($sql) < 0)
fatal_error(0,'<p>'.grr_sql_error().'</p>');
$id_site = mysql_insert_id();
}
// On affecte tous les domaines à un site.
$sql = "select id from ".TABLE_PREFIX."_area";
$res = grr_sql_query($sql);
if ($res) for ($i = 0; ($row = grr_sql_row($res, $i)); $i++)
{
// l'area est-elle déjà affectée à un site ?
$test_site = grr_sql_query1("select count(id_area) from ".TABLE_PREFIX."_j_site_area where id_area='".$row[0]."'");
if ($test_site==0) {
$sql="INSERT INTO ".TABLE_PREFIX."_j_site_area SET id_site='".$id_site."', id_area='".$row[0]."'";
if (grr_sql_command($sql) < 0)
fatal_error(0,'<p>'.grr_sql_error().'</p>');
}
}
}
}
}
// use_fckeditor
if (isset($_GET['use_fckeditor'])) {
if (!saveSetting("use_fckeditor", $_GET['use_fckeditor'])) {
echo "Erreur lors de l'enregistrement de use_fckeditor !<br />";
die();
}
}
# print the page header
print_header("","","","",$type="with_session", $page="admin");
if (isset($_GET['ok'])) {
$msg = get_vocab("message_records");
affiche_pop_up($msg,"admin");
}
// Affichage de la colonne de gauche
include "admin_col_gauche.php";
// Affichage du tableau de choix des sous-configuration
include "include/admin_config_tableau.inc.php";
//
// Configurations du nombre de jours par Cycle et du premier jour du premier Jours/Cycles
//******************************
//
echo "<form action=\"./admin_config.php\" method=\"get\" style=\"width: 100%;\" onsubmit=\"return verifierJoursCycles(false);\">\n";
echo "<h3>".get_vocab("Activer_module_jours_cycles").grr_help("aide_grr_jours_cycle")."</h3>\n";
echo "<table border='0'>\n<tr>\n<td>\n";
echo get_vocab("Activer_module_jours_cycles").get_vocab("deux_points");
echo "<select name='jours_cycles'>\n";
if (getSettingValue("jours_cycles_actif") == "Oui") {
echo "<option value=\"Oui\" selected=\"selected\">".get_vocab('YES')."</option>\n";
echo "<option value=\"Non\">".get_vocab('NO')."</option>\n";
} else {
echo "<option value=\"Oui\">".get_vocab('YES')."</option>\n";
echo "<option value=\"Non\" selected=\"selected\">".get_vocab('NO')."</option>\n";
}
echo "</select>\n</td>\n</tr>\n</table><hr />\n";
echo "<h3>".get_vocab("Activer_module_multisite").grr_help("aide_grr_multisites")."</h3>\n";
echo "<table border='0'>\n<tr>\n<td>\n";
echo get_vocab("Activer_module_multisite").get_vocab("deux_points");
echo "<select name='module_multisite'>\n";
if (getSettingValue("module_multisite") == "Oui") {
echo "<option value=\"Oui\" selected=\"selected\">".get_vocab('YES')."</option>\n";
echo "<option value=\"Non\">".get_vocab('NO')."</option>\n";
} else {
echo "<option value=\"Oui\">".get_vocab('YES')."</option>\n";
echo "<option value=\"Non\" selected=\"selected\">".get_vocab('NO')."</option>\n";
}
echo "</select>\n</td>\n</tr>\n</table>\n";
# La page de modification de la configuration d'une ressource utilise pour le champ "description complète"
# l'application FckEditor permettant une mise en forme "wysiwyg" de la page.
# "0" pour ne pas utiliser cette application (le répertoire "fckeditor" et tout ce qu'il contient n'est alors pas nécessaire au bon fonctionnement de GRR).
echo "\n<hr /><h3>".get_vocab("use_fckeditor_msg")."</h3>";
echo "\n<p>".get_vocab("use_fckeditor_explain")."</p>";
echo "\n<table>";
echo "\n<tr><td>".get_vocab("use_fckeditor0")."</td><td>";
echo "\n<input type='radio' name='use_fckeditor' value='0' "; if (getSettingValue("use_fckeditor")=='0') echo "checked=\"checked\""; echo " />";
echo "\n</td></tr>";
echo "\n<tr><td>".get_vocab("use_fckeditor1")."</td><td>";
echo "\n<input type='radio' name='use_fckeditor' value='1' "; if (getSettingValue("use_fckeditor")=='1') echo "checked=\"checked\""; echo " />";
echo "\n</td></tr>";
echo "\n</table>";
echo "\n<div id=\"fixe\" style=\"text-align:center;\"><input type=\"submit\" name=\"ok\" value=\"".get_vocab("save")."\" style=\"font-variant: small-caps;\"/>\n";
echo "<input type=\"hidden\" value=\"5\" name=\"page_config\" /></div>\n";
echo "</form>";
// fin de l'affichage de la colonne de droite
echo "</td></tr></table>";
?>