18 |
18 |
|
19 |
19 |
require('../../config.php');
|
20 |
20 |
require_once(WB_PATH.'/framework/class.admin.php');
|
21 |
|
if(isset($_GET['advanced']) AND $_GET['advanced'] == 'yes') {
|
|
21 |
|
|
22 |
if(isset($_GET['advanced']) && $_GET['advanced'] == 'yes') {
|
22 |
23 |
$admin = new admin('Settings', 'settings_advanced');
|
23 |
24 |
} else {
|
24 |
25 |
$admin = new admin('Settings', 'settings_basic');
|
... | ... | |
30 |
31 |
|
31 |
32 |
// Create new template object
|
32 |
33 |
$template = new Template(THEME_PATH.'/templates');
|
33 |
|
$template->set_file('page', 'settings.htt');
|
34 |
|
$template->set_block('page', 'main_block', 'main');
|
|
34 |
// $template->debug = true;
|
35 |
35 |
|
|
36 |
$template->set_file('page', 'settings.htt');
|
|
37 |
$template->set_block('page', 'main_block', 'main');
|
|
38 |
|
|
39 |
$template->set_block('main_block', 'template_list_block', 'template_list');
|
|
40 |
$template->set_block('main_block', 'timezone_list_block', 'timezone_list');
|
|
41 |
$template->set_block('main_block', 'language_list_block', 'language_list');
|
|
42 |
$template->set_block('main_block', 'date_format_list_block', 'date_format_list');
|
|
43 |
$template->set_block('main_block', 'time_format_list_block', 'time_format_list');
|
|
44 |
$template->set_block('main_block', 'theme_list_block', 'theme_list');
|
|
45 |
$template->set_block('main_block', 'search_template_list_block', 'search_template_list');
|
|
46 |
$template->set_block('main_block', 'group_list_block', 'group_list');
|
|
47 |
$template->set_block('main_block', 'charset_list_block', 'charset_list');
|
|
48 |
$template->set_block('main_block', 'error_reporting_list_block', 'error_reporting_list');
|
|
49 |
$template->set_block('main_block', 'editor_list_block', 'editor_list');
|
|
50 |
$template->set_block('main_block', 'page_level_limit_list_block', 'page_level_limit_list');
|
|
51 |
|
|
52 |
$template->set_block('main_block', 'show_page_level_limit_block', 'show_page_level_limit');
|
|
53 |
$template->set_block('main_block', 'show_checkbox_1_block', 'show_checkbox_1');
|
|
54 |
$template->set_block('main_block', 'show_checkbox_2_block', 'show_checkbox_2');
|
|
55 |
$template->set_block('main_block', 'show_checkbox_3_block', 'show_checkbox_3');
|
|
56 |
$template->set_block('main_block', 'show_php_error_level_block', 'show_php_error_level');
|
|
57 |
$template->set_block('main_block', 'show_charset_block', 'show_charset');
|
|
58 |
$template->set_block('main_block', 'show_wysiwyg_block', 'show_wysiwyg');
|
|
59 |
$template->set_block('main_block', 'show_access_block', 'show_access');
|
|
60 |
$template->set_block('main_block', 'show_search_block', 'show_search');
|
|
61 |
$template->set_block('main_block', 'show_redirect_timer_block', 'show_redirect_timer');
|
|
62 |
|
36 |
63 |
// Query current settings in the db, then loop through them and print them
|
37 |
64 |
$query = "SELECT * FROM ".TABLE_PREFIX."settings";
|
38 |
65 |
$results = $database->query($query);
|
... | ... | |
43 |
70 |
$template->set_var(strtoupper($setting_name),$setting_value);
|
44 |
71 |
}
|
45 |
72 |
|
46 |
|
// Query current settings in the db, then loop through them and print them
|
47 |
|
$query = "SELECT * FROM ".TABLE_PREFIX."search WHERE extra = ''";
|
48 |
|
$results = $database->query($query);
|
49 |
|
while($setting = $results->fetchRow()) {
|
50 |
|
$setting_name = $setting['name'];
|
51 |
|
$setting_value = htmlspecialchars(($setting['value']));
|
52 |
|
switch($setting_name) {
|
53 |
|
// Search header
|
54 |
|
case 'header':
|
55 |
|
$template->set_var('SEARCH_HEADER', $setting_value);
|
56 |
|
break;
|
57 |
|
// Search results header
|
58 |
|
case 'results_header':
|
59 |
|
$template->set_var('SEARCH_RESULTS_HEADER', $setting_value);
|
60 |
|
break;
|
61 |
|
// Search results loop
|
62 |
|
case 'results_loop':
|
63 |
|
$template->set_var('SEARCH_RESULTS_LOOP', $setting_value);
|
64 |
|
break;
|
65 |
|
// Search results footer
|
66 |
|
case 'results_footer':
|
67 |
|
$template->set_var('SEARCH_RESULTS_FOOTER', $setting_value);
|
68 |
|
break;
|
69 |
|
// Search no results
|
70 |
|
case 'no_results':
|
71 |
|
$template->set_var('SEARCH_NO_RESULTS', $setting_value);
|
72 |
|
break;
|
73 |
|
// Search footer
|
74 |
|
case 'footer':
|
75 |
|
$template->set_var('SEARCH_FOOTER', $setting_value);
|
76 |
|
break;
|
77 |
|
// Search module-order
|
78 |
|
case 'module_order':
|
79 |
|
$template->set_var('SEARCH_MODULE_ORDER', $setting_value);
|
80 |
|
break;
|
81 |
|
// Search max lines of excerpt
|
82 |
|
case 'max_excerpt':
|
83 |
|
$template->set_var('SEARCH_MAX_EXCERPT', $setting_value);
|
84 |
|
break;
|
85 |
|
// time-limit
|
86 |
|
case 'time_limit':
|
87 |
|
$template->set_var('SEARCH_TIME_LIMIT', $setting_value);
|
88 |
|
break;
|
89 |
|
// Search template
|
90 |
|
case 'template':
|
91 |
|
$search_template = $setting_value;
|
92 |
|
break;
|
93 |
|
}
|
94 |
|
}
|
95 |
|
|
96 |
73 |
// Do the same for settings stored in config file as with ones in db
|
97 |
74 |
$database_type = '';
|
98 |
|
|
|
75 |
$is_advanced = (isset($_GET['advanced']) && $_GET['advanced'] == 'yes');
|
99 |
76 |
// Tell the browser whether or not to show advanced options
|
100 |
|
if(isset($_GET['advanced']) AND $_GET['advanced'] == 'yes') {
|
|
77 |
if($is_advanced)
|
|
78 |
{
|
101 |
79 |
$template->set_var('DISPLAY_ADVANCED', '');
|
|
80 |
$template->set_var('ADVANCED_FILE_PERMS_ID', 'file_perms_box');
|
|
81 |
$template->set_var('BASIC_FILE_PERMS_ID', 'hide');
|
102 |
82 |
$template->set_var('ADVANCED', 'yes');
|
103 |
83 |
$template->set_var('ADVANCED_BUTTON', '<< '.$TEXT['HIDE_ADVANCED']);
|
104 |
84 |
$template->set_var('ADVANCED_LINK', 'index.php?advanced=no');
|
105 |
|
$template->set_var('BASIC_FILE_PERMS_ID', 'hide');
|
106 |
|
$template->set_var('ADVANCED_FILE_PERMS_ID', 'file_perms_box');
|
|
85 |
|
107 |
86 |
} else {
|
108 |
87 |
$template->set_var('DISPLAY_ADVANCED', ' style="display: none;"');
|
|
88 |
$template->set_var('BASIC_FILE_PERMS_ID', 'file_perms_box');
|
|
89 |
$template->set_var('ADVANCED_FILE_PERMS_ID', 'hide');
|
|
90 |
|
109 |
91 |
$template->set_var('ADVANCED', 'no');
|
110 |
92 |
$template->set_var('ADVANCED_BUTTON', $TEXT['SHOW_ADVANCED'].' >>');
|
111 |
93 |
$template->set_var('ADVANCED_LINK', 'index.php?advanced=yes');
|
112 |
|
$template->set_var('BASIC_FILE_PERMS_ID', 'file_perms_box');
|
113 |
|
$template->set_var('ADVANCED_FILE_PERMS_ID', 'hide');
|
114 |
94 |
}
|
115 |
95 |
|
116 |
|
$template->set_var(array(
|
|
96 |
$query = "SELECT * FROM ".TABLE_PREFIX."search WHERE extra = ''";
|
|
97 |
$results = $database->query($query);
|
|
98 |
|
|
99 |
// Query current settings in the db, then loop through them and print them
|
|
100 |
while($setting = $results->fetchRow())
|
|
101 |
{
|
|
102 |
$setting_name = $setting['name'];
|
|
103 |
$setting_value = htmlspecialchars(($setting['value']));
|
|
104 |
switch($setting_name) {
|
|
105 |
// Search header
|
|
106 |
case 'header':
|
|
107 |
$template->set_var('SEARCH_HEADER', $setting_value);
|
|
108 |
break;
|
|
109 |
// Search results header
|
|
110 |
case 'results_header':
|
|
111 |
$template->set_var('SEARCH_RESULTS_HEADER', $setting_value);
|
|
112 |
break;
|
|
113 |
// Search results loop
|
|
114 |
case 'results_loop':
|
|
115 |
$template->set_var('SEARCH_RESULTS_LOOP', $setting_value);
|
|
116 |
break;
|
|
117 |
// Search results footer
|
|
118 |
case 'results_footer':
|
|
119 |
$template->set_var('SEARCH_RESULTS_FOOTER', $setting_value);
|
|
120 |
break;
|
|
121 |
// Search no results
|
|
122 |
case 'no_results':
|
|
123 |
$template->set_var('SEARCH_NO_RESULTS', $setting_value);
|
|
124 |
break;
|
|
125 |
// Search footer
|
|
126 |
case 'footer':
|
|
127 |
$template->set_var('SEARCH_FOOTER', $setting_value);
|
|
128 |
break;
|
|
129 |
// Search module-order
|
|
130 |
case 'module_order':
|
|
131 |
$template->set_var('SEARCH_MODULE_ORDER', $setting_value);
|
|
132 |
break;
|
|
133 |
// Search max lines of excerpt
|
|
134 |
case 'max_excerpt':
|
|
135 |
$template->set_var('SEARCH_MAX_EXCERPT', $setting_value);
|
|
136 |
break;
|
|
137 |
// time-limit
|
|
138 |
case 'time_limit':
|
|
139 |
$template->set_var('SEARCH_TIME_LIMIT', $setting_value);
|
|
140 |
break;
|
|
141 |
// Search template
|
|
142 |
case 'template':
|
|
143 |
$search_template = $setting_value;
|
|
144 |
break;
|
|
145 |
}
|
|
146 |
}
|
|
147 |
|
|
148 |
$template->set_var(array(
|
117 |
149 |
'PAGES_DIRECTORY' => PAGES_DIRECTORY,
|
118 |
150 |
'MEDIA_DIRECTORY' => MEDIA_DIRECTORY,
|
119 |
151 |
'PAGE_EXTENSION' => PAGE_EXTENSION,
|
... | ... | |
123 |
155 |
'THEME_URL' => THEME_URL,
|
124 |
156 |
'ADMIN_PATH' => ADMIN_PATH,
|
125 |
157 |
'ADMIN_URL' => ADMIN_URL,
|
126 |
|
'DATABASE_TYPE' => DB_TYPE,
|
127 |
|
'DATABASE_HOST' => DB_HOST,
|
128 |
|
'DATABASE_USERNAME' => DB_USERNAME,
|
129 |
|
'DATABASE_NAME' => DB_NAME,
|
|
158 |
'DATABASE_TYPE' => '',
|
|
159 |
'DATABASE_HOST' => '',
|
|
160 |
'DATABASE_USERNAME' => '',
|
|
161 |
'DATABASE_NAME' => '',
|
130 |
162 |
'TABLE_PREFIX' => TABLE_PREFIX
|
131 |
|
)
|
132 |
|
);
|
|
163 |
));
|
133 |
164 |
|
134 |
|
// Insert language values
|
135 |
|
$template->set_block('main_block', 'language_list_block', 'language_list');
|
136 |
|
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'language' ORDER BY name");
|
137 |
|
if($result->numRows() > 0) {
|
138 |
|
while($addon = $result->fetchRow()) {
|
139 |
|
$l_codes[$addon['name']] = $addon['directory'];
|
140 |
|
$l_names[$addon['name']] = entities_to_7bit($addon['name']); // sorting-problem workaround
|
|
165 |
// Insert language values
|
|
166 |
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'language' ORDER BY name");
|
|
167 |
if($result->numRows() > 0)
|
|
168 |
{
|
|
169 |
while($addon = $result->fetchRow()) {
|
|
170 |
$l_codes[$addon['name']] = $addon['directory'];
|
|
171 |
$l_names[$addon['name']] = entities_to_7bit($addon['name']); // sorting-problem workaround
|
|
172 |
}
|
|
173 |
asort($l_names);
|
|
174 |
foreach($l_names as $l_name=>$v) {
|
|
175 |
// Insert code and name
|
|
176 |
$template->set_var(array(
|
|
177 |
'CODE' => $l_codes[$l_name],
|
|
178 |
'NAME' => $l_name,
|
|
179 |
'FLAG' => THEME_URL.'/images/flags/'.strtolower($l_codes[$l_name]),
|
|
180 |
));
|
|
181 |
// Check if it is selected
|
|
182 |
if(DEFAULT_LANGUAGE == $l_codes[$l_name]) {
|
|
183 |
$template->set_var('SELECTED', ' selected="selected"');
|
|
184 |
} else {
|
|
185 |
$template->set_var('SELECTED', '');
|
|
186 |
}
|
|
187 |
$template->parse('language_list', 'language_list_block', true);
|
|
188 |
}
|
141 |
189 |
}
|
142 |
|
asort($l_names);
|
143 |
|
foreach($l_names as $l_name=>$v) {
|
144 |
|
// Insert code and name
|
145 |
|
$template->set_var(array(
|
146 |
|
'CODE' => $l_codes[$l_name],
|
147 |
|
'NAME' => $l_name,
|
148 |
|
'FLAG' => THEME_URL.'/images/flags/'.strtolower($l_codes[$l_name]),
|
149 |
|
));
|
150 |
|
// Check if it is selected
|
151 |
|
if(DEFAULT_LANGUAGE == $l_codes[$l_name]) {
|
|
190 |
|
|
191 |
// Insert default timezone values
|
|
192 |
require(ADMIN_PATH.'/interface/timezones.php');
|
|
193 |
foreach($TIMEZONES AS $hour_offset => $title)
|
|
194 |
{
|
|
195 |
// Make sure we dont list "System Default" as we are setting this value!
|
|
196 |
if($hour_offset != '-20') {
|
|
197 |
$template->set_var('VALUE', $hour_offset);
|
|
198 |
$template->set_var('NAME', $title);
|
|
199 |
if(DEFAULT_TIMEZONE == $hour_offset*60*60) {
|
|
200 |
$template->set_var('SELECTED', ' selected="selected"');
|
|
201 |
} else {
|
|
202 |
$template->set_var('SELECTED', '');
|
|
203 |
}
|
|
204 |
$template->parse('timezone_list', 'timezone_list_block', true);
|
|
205 |
}
|
|
206 |
}
|
|
207 |
|
|
208 |
// Insert default charset values
|
|
209 |
require(ADMIN_PATH.'/interface/charsets.php');
|
|
210 |
foreach($CHARSETS AS $code => $title) {
|
|
211 |
$template->set_var('VALUE', $code);
|
|
212 |
$template->set_var('NAME', $title);
|
|
213 |
if(DEFAULT_CHARSET == $code) {
|
152 |
214 |
$template->set_var('SELECTED', ' selected="selected"');
|
153 |
215 |
} else {
|
154 |
216 |
$template->set_var('SELECTED', '');
|
155 |
217 |
}
|
156 |
|
$template->parse('language_list', 'language_list_block', true);
|
|
218 |
$template->parse('charset_list', 'charset_list_block', true);
|
157 |
219 |
}
|
158 |
|
}
|
159 |
220 |
|
160 |
|
// Insert default timezone values
|
161 |
|
require(ADMIN_PATH.'/interface/timezones.php');
|
162 |
|
$template->set_block('main_block', 'timezone_list_block', 'timezone_list');
|
163 |
|
foreach($TIMEZONES AS $hour_offset => $title) {
|
164 |
|
// Make sure we dont list "System Default" as we are setting this value!
|
165 |
|
if($hour_offset != '-20') {
|
166 |
|
$template->set_var('VALUE', $hour_offset);
|
|
221 |
|
|
222 |
// Insert date format list
|
|
223 |
require(ADMIN_PATH.'/interface/date_formats.php');
|
|
224 |
foreach($DATE_FORMATS AS $format => $title) {
|
|
225 |
$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
|
|
226 |
if($format != 'system_default') {
|
|
227 |
$template->set_var('VALUE', $format);
|
|
228 |
} else {
|
|
229 |
$template->set_var('VALUE', '');
|
|
230 |
}
|
167 |
231 |
$template->set_var('NAME', $title);
|
168 |
|
if(DEFAULT_TIMEZONE == $hour_offset*60*60) {
|
|
232 |
if(DEFAULT_DATE_FORMAT == $format) {
|
169 |
233 |
$template->set_var('SELECTED', ' selected="selected"');
|
170 |
234 |
} else {
|
171 |
235 |
$template->set_var('SELECTED', '');
|
172 |
236 |
}
|
173 |
|
$template->parse('timezone_list', 'timezone_list_block', true);
|
|
237 |
$template->parse('date_format_list', 'date_format_list_block', true);
|
174 |
238 |
}
|
175 |
|
}
|
176 |
239 |
|
177 |
|
// Insert default charset values
|
178 |
|
require(ADMIN_PATH.'/interface/charsets.php');
|
179 |
|
$template->set_block('main_block', 'charset_list_block', 'charset_list');
|
180 |
|
foreach($CHARSETS AS $code => $title) {
|
181 |
|
$template->set_var('VALUE', $code);
|
182 |
|
$template->set_var('NAME', $title);
|
183 |
|
if(DEFAULT_CHARSET == $code) {
|
184 |
|
$template->set_var('SELECTED', ' selected="selected"');
|
185 |
|
} else {
|
186 |
|
$template->set_var('SELECTED', '');
|
|
240 |
// Insert time format list
|
|
241 |
require(ADMIN_PATH.'/interface/time_formats.php');
|
|
242 |
foreach($TIME_FORMATS AS $format => $title) {
|
|
243 |
$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
|
|
244 |
if($format != 'system_default') {
|
|
245 |
$template->set_var('VALUE', $format);
|
|
246 |
} else {
|
|
247 |
$template->set_var('VALUE', '');
|
|
248 |
}
|
|
249 |
$template->set_var('NAME', $title);
|
|
250 |
if(DEFAULT_TIME_FORMAT == $format) {
|
|
251 |
$template->set_var('SELECTED', ' selected="selected"');
|
|
252 |
} else {
|
|
253 |
$template->set_var('SELECTED', '');
|
|
254 |
}
|
|
255 |
$template->parse('time_format_list', 'time_format_list_block', true);
|
187 |
256 |
}
|
188 |
|
$template->parse('charset_list', 'charset_list_block', true);
|
189 |
|
}
|
190 |
257 |
|
191 |
|
// Insert date format list
|
192 |
|
require(ADMIN_PATH.'/interface/date_formats.php');
|
193 |
|
$template->set_block('main_block', 'date_format_list_block', 'date_format_list');
|
194 |
|
foreach($DATE_FORMATS AS $format => $title) {
|
195 |
|
$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
|
196 |
|
if($format != 'system_default') {
|
197 |
|
$template->set_var('VALUE', $format);
|
198 |
|
} else {
|
199 |
|
$template->set_var('VALUE', '');
|
|
258 |
// Insert templates
|
|
259 |
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' AND function != 'theme' ORDER BY name");
|
|
260 |
if($result->numRows() > 0) {
|
|
261 |
while($addon = $result->fetchRow()) {
|
|
262 |
$template->set_var('FILE', $addon['directory']);
|
|
263 |
$template->set_var('NAME', $addon['name']);
|
|
264 |
if(($addon['directory'] == DEFAULT_TEMPLATE) ? $selected = ' selected="selected"' : $selected = '');
|
|
265 |
$template->set_var('SELECTED', $selected);
|
|
266 |
$template->parse('template_list', 'template_list_block', true);
|
|
267 |
}
|
200 |
268 |
}
|
201 |
|
$template->set_var('NAME', $title);
|
202 |
|
if(DEFAULT_DATE_FORMAT == $format) {
|
203 |
|
$template->set_var('SELECTED', ' selected="selected"');
|
204 |
|
} else {
|
205 |
|
$template->set_var('SELECTED', '');
|
206 |
|
}
|
207 |
|
$template->parse('date_format_list', 'date_format_list_block', true);
|
208 |
|
}
|
209 |
269 |
|
210 |
|
// Insert time format list
|
211 |
|
require(ADMIN_PATH.'/interface/time_formats.php');
|
212 |
|
$template->set_block('main_block', 'time_format_list_block', 'time_format_list');
|
213 |
|
foreach($TIME_FORMATS AS $format => $title) {
|
214 |
|
$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
|
215 |
|
if($format != 'system_default') {
|
216 |
|
$template->set_var('VALUE', $format);
|
217 |
|
} else {
|
218 |
|
$template->set_var('VALUE', '');
|
|
270 |
// Insert backend theme
|
|
271 |
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' AND function = 'theme' ORDER BY name");
|
|
272 |
if($result->numRows() > 0) {
|
|
273 |
while($addon = $result->fetchRow()) {
|
|
274 |
$template->set_var('FILE', $addon['directory']);
|
|
275 |
$template->set_var('NAME', $addon['name']);
|
|
276 |
if(($addon['directory'] == DEFAULT_THEME) ? $selected = ' selected="selected"' : $selected = '');
|
|
277 |
$template->set_var('SELECTED', $selected);
|
|
278 |
$template->parse('theme_list', 'theme_list_block', true);
|
|
279 |
}
|
219 |
280 |
}
|
220 |
|
$template->set_var('NAME', $title);
|
221 |
|
if(DEFAULT_TIME_FORMAT == $format) {
|
222 |
|
$template->set_var('SELECTED', ' selected="selected"');
|
223 |
|
} else {
|
224 |
|
$template->set_var('SELECTED', '');
|
225 |
|
}
|
226 |
|
$template->parse('time_format_list', 'time_format_list_block', true);
|
227 |
|
}
|
228 |
281 |
|
229 |
|
// Insert templates
|
230 |
|
$template->set_block('main_block', 'template_list_block', 'template_list');
|
231 |
|
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' AND function != 'theme' ORDER BY name");
|
232 |
|
if($result->numRows() > 0) {
|
233 |
|
while($addon = $result->fetchRow()) {
|
234 |
|
$template->set_var('FILE', $addon['directory']);
|
235 |
|
$template->set_var('NAME', $addon['name']);
|
236 |
|
if(($addon['directory'] == DEFAULT_TEMPLATE) ? $selected = ' selected="selected"' : $selected = '');
|
237 |
|
$template->set_var('SELECTED', $selected);
|
238 |
|
$template->parse('template_list', 'template_list_block', true);
|
|
282 |
// Insert WYSIWYG modules
|
|
283 |
$file='none';
|
|
284 |
$module_name=$TEXT['NONE'];
|
|
285 |
$template->set_var('FILE', $file);
|
|
286 |
$template->set_var('NAME', $module_name);
|
|
287 |
$selected = (!defined('WYSIWYG_EDITOR') || $file == WYSIWYG_EDITOR) ? ' selected="selected"' : '';
|
|
288 |
$template->set_var('SELECTED', $selected);
|
|
289 |
$template->parse('editor_list', 'editor_list_block', true);
|
|
290 |
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'wysiwyg' ORDER BY name");
|
|
291 |
if($result->numRows() > 0)
|
|
292 |
{
|
|
293 |
while($addon = $result->fetchRow())
|
|
294 |
{
|
|
295 |
$template->set_var('FILE', $addon['directory']);
|
|
296 |
$template->set_var('NAME', $addon['name']);
|
|
297 |
$selected = (!defined('WYSIWYG_EDITOR') || $addon['directory'] == WYSIWYG_EDITOR) ? ' selected="selected"' : '';
|
|
298 |
$template->set_var('SELECTED', $selected);
|
|
299 |
$template->parse('editor_list', 'editor_list_block', true);
|
|
300 |
}
|
239 |
301 |
}
|
240 |
|
}
|
241 |
302 |
|
242 |
|
// Insert backend theme
|
243 |
|
$template->set_block('main_block', 'theme_list_block', 'theme_list');
|
244 |
|
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' AND function = 'theme' ORDER BY name");
|
245 |
|
if($result->numRows() > 0) {
|
246 |
|
while($addon = $result->fetchRow()) {
|
247 |
|
$template->set_var('FILE', $addon['directory']);
|
248 |
|
$template->set_var('NAME', $addon['name']);
|
249 |
|
if(($addon['directory'] == DEFAULT_THEME) ? $selected = ' selected="selected"' : $selected = '');
|
250 |
|
$template->set_var('SELECTED', $selected);
|
251 |
|
$template->parse('theme_list', 'theme_list_block', true);
|
252 |
|
}
|
253 |
|
}
|
254 |
|
|
255 |
|
// Insert WYSIWYG modules
|
256 |
|
$template->set_block('main_block', 'editor_list_block', 'editor_list');
|
257 |
|
$file='none';
|
258 |
|
$module_name=$TEXT['NONE'];
|
259 |
|
$template->set_var('FILE', $file);
|
260 |
|
$template->set_var('NAME', $module_name);
|
261 |
|
if((!defined('WYSIWYG_EDITOR') || $file == WYSIWYG_EDITOR) ? $selected = ' selected="selected"' : $selected = '');
|
262 |
|
$template->set_var('SELECTED', $selected);
|
263 |
|
$template->parse('editor_list', 'editor_list_block', true);
|
264 |
|
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'wysiwyg' ORDER BY name");
|
265 |
|
if($result->numRows() > 0)
|
266 |
|
{
|
267 |
|
while($addon = $result->fetchRow())
|
268 |
|
{
|
269 |
|
$template->set_var('FILE', $addon['directory']);
|
270 |
|
$template->set_var('NAME', $addon['name']);
|
271 |
|
if((defined('WYSIWYG_EDITOR') AND $addon['directory'] == WYSIWYG_EDITOR) ? $selected = ' selected="selected"' : $selected = '');
|
272 |
|
$template->set_var('SELECTED', $selected);
|
273 |
|
$template->parse('editor_list', 'editor_list_block', true);
|
274 |
|
}
|
275 |
|
}
|
276 |
|
|
277 |
303 |
// Insert templates for search settings
|
278 |
|
$template->set_block('main_block', 'search_template_list_block', 'search_template_list');
|
|
304 |
$search_template = ( ($search_template == DEFAULT_TEMPLATE) || ($search_template == '') ) ? DEFAULT_TEMPLATE : $search_template;
|
|
305 |
$selected = ( ($search_template != DEFAULT_TEMPLATE) ) ? ' selected="selected"' : $selected = '';
|
279 |
306 |
|
280 |
|
$search_template = ( ($search_template == DEFAULT_TEMPLATE) OR ($search_template == '') ) ? '' : $search_template;
|
|
307 |
$template->set_var(array(
|
|
308 |
'FILE' => '',
|
|
309 |
'NAME' => $TEXT['SYSTEM_DEFAULT'],
|
|
310 |
'SELECTED' => $selected
|
|
311 |
));
|
281 |
312 |
|
282 |
|
$selected = ( ($search_template != DEFAULT_TEMPLATE) ) ? ' selected="selected"' : $selected = '';
|
|
313 |
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' AND function = 'template' ORDER BY name");
|
|
314 |
if($result->numRows() > 0)
|
|
315 |
{
|
|
316 |
while($addon = $result->fetchRow())
|
|
317 |
{
|
|
318 |
$template->set_var('FILE', $addon['directory']);
|
|
319 |
$template->set_var('NAME', $addon['name']);
|
|
320 |
$selected = ($addon['directory'] == $search_template) ? ' selected="selected"' : $selected = '';
|
|
321 |
$template->set_var('SELECTED', $selected);
|
|
322 |
$template->parse('search_template_list', 'search_template_list_block', true);
|
283 |
323 |
|
284 |
|
$template->set_var(array(
|
285 |
|
'FILE' => '',
|
286 |
|
'NAME' => $TEXT['SYSTEM_DEFAULT'],
|
287 |
|
'SELECTED' => $selected
|
288 |
|
));
|
|
324 |
}
|
|
325 |
}
|
289 |
326 |
|
290 |
|
$template->parse('search_template_list', 'search_template_list_block', true);
|
291 |
|
$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'template' AND function = 'template' ORDER BY name");
|
|
327 |
// Insert default error reporting values
|
|
328 |
require(ADMIN_PATH.'/interface/er_levels.php');
|
|
329 |
foreach($ER_LEVELS AS $value => $title)
|
|
330 |
{
|
|
331 |
$template->set_var('VALUE', $value);
|
|
332 |
$template->set_var('NAME', $title);
|
|
333 |
$selected = (ER_LEVEL == $value) ? ' selected="selected"' : '';
|
|
334 |
$template->set_var('SELECTED', $selected);
|
|
335 |
$template->parse('error_reporting_list', 'error_reporting_list_block', true);
|
|
336 |
}
|
292 |
337 |
|
293 |
|
if($result->numRows() > 0)
|
294 |
|
{
|
295 |
|
while($addon = $result->fetchRow())
|
296 |
|
{
|
297 |
|
$template->set_var('FILE', $addon['directory']);
|
298 |
|
$template->set_var('NAME', $addon['name']);
|
299 |
|
$selected = ($addon['directory'] == $search_template) ? ' selected="selected"' : $selected = '';
|
300 |
|
$template->set_var('SELECTED', $selected);
|
|
338 |
// Insert permissions values
|
|
339 |
if($admin->get_permission('settings_advanced') != true)
|
|
340 |
{
|
|
341 |
$template->set_var('DISPLAY_ADVANCED_BUTTON', 'hide');
|
|
342 |
}
|
301 |
343 |
|
302 |
|
$template->parse('search_template_list', 'search_template_list_block', true);
|
|
344 |
// Insert page level limits
|
|
345 |
for($i = 1; $i <= 10; $i++)
|
|
346 |
{
|
|
347 |
$template->set_var('NUMBER', $i);
|
|
348 |
if(PAGE_LEVEL_LIMIT == $i)
|
|
349 |
{
|
|
350 |
$template->set_var('SELECTED', ' selected="selected"');
|
|
351 |
} else {
|
|
352 |
$template->set_var('SELECTED', '');
|
|
353 |
}
|
|
354 |
$template->parse('page_level_limit_list', 'page_level_limit_list_block', true);
|
303 |
355 |
}
|
304 |
|
}
|
305 |
356 |
|
306 |
|
// Insert default error reporting values
|
307 |
|
require(ADMIN_PATH.'/interface/er_levels.php');
|
308 |
|
$template->set_block('main_block', 'error_reporting_list_block', 'error_reporting_list');
|
309 |
|
foreach($ER_LEVELS AS $value => $title)
|
310 |
|
{
|
311 |
|
$template->set_var('VALUE', $value);
|
312 |
|
$template->set_var('NAME', $title);
|
313 |
|
$selected = (ER_LEVEL == $value) ? ' selected="selected"' : '';
|
314 |
|
$template->set_var('SELECTED', $selected);
|
|
357 |
// Work-out if multiple menus feature is enabled
|
|
358 |
if(defined('MULTIPLE_MENUS') && MULTIPLE_MENUS == true)
|
|
359 |
{
|
|
360 |
$template->set_var('MULTIPLE_MENUS_ENABLED', ' checked="checked"');
|
|
361 |
} else {
|
|
362 |
$template->set_var('MULTIPLE_MENUS_DISABLED', ' checked="checked"');
|
|
363 |
}
|
315 |
364 |
|
316 |
|
$template->parse('error_reporting_list', 'error_reporting_list_block', true);
|
317 |
|
}
|
|
365 |
// Work-out if page languages feature is enabled
|
|
366 |
if(defined('PAGE_LANGUAGES') && PAGE_LANGUAGES == true)
|
|
367 |
{
|
|
368 |
$template->set_var('PAGE_LANGUAGES_ENABLED', ' checked="checked"');
|
|
369 |
} else {
|
|
370 |
$template->set_var('PAGE_LANGUAGES_DISABLED', ' checked="checked"');
|
|
371 |
}
|
318 |
372 |
|
319 |
|
// Insert permissions values
|
320 |
|
if($admin->get_permission('settings_advanced') != true)
|
321 |
|
{
|
322 |
|
$template->set_var('DISPLAY_ADVANCED_BUTTON', 'hide');
|
323 |
|
}
|
|
373 |
// Work-out if smart login feature is enabled
|
|
374 |
if(defined('SMART_LOGIN') && SMART_LOGIN == true)
|
|
375 |
{
|
|
376 |
$template->set_var('SMART_LOGIN_ENABLED', ' checked="checked"');
|
|
377 |
} else {
|
|
378 |
$template->set_var('SMART_LOGIN_DISABLED', ' checked="checked"');
|
|
379 |
}
|
324 |
380 |
|
325 |
|
// Insert page level limits
|
326 |
|
$template->set_block('main_block', 'page_level_limit_list_block', 'page_level_limit_list');
|
327 |
|
for($i = 1; $i <= 10; $i++)
|
328 |
|
{
|
329 |
|
$template->set_var('NUMBER', $i);
|
330 |
|
if(PAGE_LEVEL_LIMIT == $i)
|
331 |
|
{
|
332 |
|
$template->set_var('SELECTED', ' selected="selected"');
|
|
381 |
/* Make's sure GD library is installed */
|
|
382 |
if(extension_loaded('gd') && function_exists('imageCreateFromJpeg'))
|
|
383 |
{
|
|
384 |
$template->set_var('GD_EXTENSION_ENABLED', '');
|
333 |
385 |
} else {
|
334 |
|
$template->set_var('SELECTED', '');
|
|
386 |
$template->set_var('GD_EXTENSION_ENABLED', ' style="display: none;"');
|
335 |
387 |
}
|
336 |
|
$template->parse('page_level_limit_list', 'page_level_limit_list_block', true);
|
337 |
|
}
|
338 |
388 |
|
339 |
|
// Work-out if multiple menus feature is enabled
|
340 |
|
if(defined('MULTIPLE_MENUS') AND MULTIPLE_MENUS == true)
|
341 |
|
{
|
342 |
|
$template->set_var('MULTIPLE_MENUS_ENABLED', ' checked="checked"');
|
343 |
|
} else {
|
344 |
|
$template->set_var('MULTIPLE_MENUS_DISABLED', ' checked="checked"');
|
345 |
|
}
|
|
389 |
// Work-out if section blocks feature is enabled
|
|
390 |
if(defined('SECTION_BLOCKS') && SECTION_BLOCKS == true)
|
|
391 |
{
|
|
392 |
$template->set_var('SECTION_BLOCKS_ENABLED', ' checked="checked"');
|
|
393 |
} else {
|
|
394 |
$template->set_var('SECTION_BLOCKS_DISABLED', ' checked="checked"');
|
|
395 |
}
|
346 |
396 |
|
347 |
|
// Work-out if page languages feature is enabled
|
348 |
|
if(defined('PAGE_LANGUAGES') AND PAGE_LANGUAGES == true)
|
349 |
|
{
|
350 |
|
$template->set_var('PAGE_LANGUAGES_ENABLED', ' checked="checked"');
|
351 |
|
} else {
|
352 |
|
$template->set_var('PAGE_LANGUAGES_DISABLED', ' checked="checked"');
|
353 |
|
}
|
|
397 |
// Work-out if homepage redirection feature is enabled
|
|
398 |
if(defined('HOMEPAGE_REDIRECTION') && HOMEPAGE_REDIRECTION == true)
|
|
399 |
{
|
|
400 |
$template->set_var('HOMEPAGE_REDIRECTION_ENABLED', ' checked="checked"');
|
|
401 |
} else {
|
|
402 |
$template->set_var('HOMEPAGE_REDIRECTION_DISABLED', ' checked="checked"');
|
|
403 |
}
|
354 |
404 |
|
355 |
|
// Work-out if smart login feature is enabled
|
356 |
|
if(defined('SMART_LOGIN') AND SMART_LOGIN == true)
|
357 |
|
{
|
358 |
|
$template->set_var('SMART_LOGIN_ENABLED', ' checked="checked"');
|
359 |
|
} else {
|
360 |
|
$template->set_var('SMART_LOGIN_DISABLED', ' checked="checked"');
|
361 |
|
}
|
|
405 |
// Work-out which server os should be checked
|
|
406 |
if(OPERATING_SYSTEM == 'linux')
|
|
407 |
{
|
|
408 |
$template->set_var('LINUX_SELECTED', ' checked="checked"');
|
|
409 |
} elseif(OPERATING_SYSTEM == 'windows') {
|
|
410 |
$template->set_var('WINDOWS_SELECTED', ' checked="checked"');
|
|
411 |
}
|
362 |
412 |
|
363 |
|
/* Make's sure GD library is installed */
|
364 |
|
if(extension_loaded('gd') AND function_exists('imageCreateFromJpeg'))
|
365 |
|
{
|
366 |
|
$template->set_var('GD_EXTENSION_ENABLED', '');
|
367 |
|
} else {
|
368 |
|
$template->set_var('GD_EXTENSION_ENABLED', ' style="display: none;"');
|
369 |
|
}
|
|
413 |
// Work-out if manage sections feature is enabled
|
|
414 |
if(MANAGE_SECTIONS)
|
|
415 |
{
|
|
416 |
$template->set_var('MANAGE_SECTIONS_ENABLED', ' checked="checked"');
|
|
417 |
} else {
|
|
418 |
$template->set_var('MANAGE_SECTIONS_DISABLED', ' checked="checked"');
|
|
419 |
}
|
370 |
420 |
|
371 |
|
// Work-out if section blocks feature is enabled
|
372 |
|
if(defined('SECTION_BLOCKS') AND SECTION_BLOCKS == true)
|
373 |
|
{
|
374 |
|
$template->set_var('SECTION_BLOCKS_ENABLED', ' checked="checked"');
|
375 |
|
} else {
|
376 |
|
$template->set_var('SECTION_BLOCKS_DISABLED', ' checked="checked"');
|
377 |
|
}
|
|
421 |
// Work-out which wbmailer routine should be checked
|
|
422 |
if(WBMAILER_ROUTINE == 'phpmail')
|
|
423 |
{
|
|
424 |
$template->set_var('PHPMAIL_SELECTED', ' checked="checked"');
|
|
425 |
$template->set_var('SMTP_VISIBILITY', ' style="display: none;"');
|
|
426 |
$template->set_var('SMTP_VISIBILITY_AUTH', ' style="display: none;"');
|
|
427 |
} elseif(WBMAILER_ROUTINE == 'smtp')
|
|
428 |
{
|
|
429 |
$template->set_var('SMTPMAIL_SELECTED', ' checked="checked"');
|
|
430 |
$template->set_var('SMTP_VISIBILITY', '');
|
|
431 |
}
|
378 |
432 |
|
379 |
|
// Work-out if homepage redirection feature is enabled
|
380 |
|
if(defined('HOMEPAGE_REDIRECTION') AND HOMEPAGE_REDIRECTION == true)
|
381 |
|
{
|
382 |
|
$template->set_var('HOMEPAGE_REDIRECTION_ENABLED', ' checked="checked"');
|
383 |
|
} else {
|
384 |
|
$template->set_var('HOMEPAGE_REDIRECTION_DISABLED', ' checked="checked"');
|
385 |
|
}
|
|
433 |
// Work-out if SMTP authentification should be checked
|
|
434 |
if(WBMAILER_SMTP_AUTH)
|
|
435 |
{
|
|
436 |
$template->set_var('SMTP_AUTH_SELECTED', ' checked="checked"');
|
|
437 |
if(WBMAILER_ROUTINE == 'smtp')
|
|
438 |
{
|
|
439 |
$template->set_var('SMTP_VISIBILITY_AUTH', '');
|
386 |
440 |
|
387 |
|
// Work-out which server os should be checked
|
388 |
|
if(OPERATING_SYSTEM == 'linux')
|
389 |
|
{
|
390 |
|
$template->set_var('LINUX_SELECTED', ' checked="checked"');
|
391 |
|
} elseif(OPERATING_SYSTEM == 'windows') {
|
392 |
|
$template->set_var('WINDOWS_SELECTED', ' checked="checked"');
|
393 |
|
}
|
394 |
|
|
395 |
|
// Work-out if manage sections feature is enabled
|
396 |
|
if(MANAGE_SECTIONS)
|
397 |
|
{
|
398 |
|
$template->set_var('MANAGE_SECTIONS_ENABLED', ' checked="checked"');
|
399 |
|
} else {
|
400 |
|
$template->set_var('MANAGE_SECTIONS_DISABLED', ' checked="checked"');
|
401 |
|
}
|
402 |
|
|
403 |
|
// Work-out which wbmailer routine should be checked
|
404 |
|
if(WBMAILER_ROUTINE == 'phpmail')
|
405 |
|
{
|
406 |
|
$template->set_var('PHPMAIL_SELECTED', ' checked="checked"');
|
407 |
|
$template->set_var('SMTP_VISIBILITY', ' style="display: none;"');
|
408 |
|
$template->set_var('SMTP_VISIBILITY_AUTH', ' style="display: none;"');
|
409 |
|
} elseif(WBMAILER_ROUTINE == 'smtp')
|
410 |
|
{
|
411 |
|
$template->set_var('SMTPMAIL_SELECTED', ' checked="checked"');
|
412 |
|
$template->set_var('SMTP_VISIBILITY', '');
|
413 |
|
}
|
414 |
|
|
415 |
|
// Work-out if SMTP authentification should be checked
|
416 |
|
if(WBMAILER_SMTP_AUTH)
|
417 |
|
{
|
418 |
|
$template->set_var('SMTP_AUTH_SELECTED', ' checked="checked"');
|
419 |
|
if(WBMAILER_ROUTINE == 'smtp')
|
420 |
|
{
|
421 |
|
$template->set_var('SMTP_VISIBILITY_AUTH', '');
|
|
441 |
} else {
|
|
442 |
$template->set_var('SMTP_VISIBILITY_AUTH', ' style="display: none;"');
|
|
443 |
}
|
422 |
444 |
} else {
|
423 |
445 |
$template->set_var('SMTP_VISIBILITY_AUTH', ' style="display: none;"');
|
424 |
446 |
}
|
425 |
|
} else {
|
426 |
|
$template->set_var('SMTP_VISIBILITY_AUTH', ' style="display: none;"');
|
427 |
|
}
|
428 |
447 |
|
429 |
|
// Work-out if intro feature is enabled
|
430 |
|
if(INTRO_PAGE)
|
431 |
|
{
|
432 |
|
$template->set_var('INTRO_PAGE_ENABLED', ' checked="checked"');
|
433 |
|
} else {
|
434 |
|
$template->set_var('INTRO_PAGE_DISABLED', ' checked="checked"');
|
435 |
|
}
|
|
448 |
// Work-out if intro feature is enabled
|
|
449 |
if(INTRO_PAGE)
|
|
450 |
{
|
|
451 |
$template->set_var('INTRO_PAGE_ENABLED', ' checked="checked"');
|
|
452 |
} else {
|
|
453 |
$template->set_var('INTRO_PAGE_DISABLED', ' checked="checked"');
|
|
454 |
}
|
436 |
455 |
|
437 |
|
// Work-out if frontend login feature is enabled
|
438 |
|
if(FRONTEND_LOGIN)
|
439 |
|
{
|
440 |
|
$template->set_var('PRIVATE_ENABLED', ' checked="checked"');
|
441 |
|
} else {
|
442 |
|
$template->set_var('PRIVATE_DISABLED', ' checked="checked"');
|
443 |
|
}
|
|
456 |
// Work-out if frontend login feature is enabled
|
|
457 |
if(FRONTEND_LOGIN)
|
|
458 |
{
|
|
459 |
$template->set_var('PRIVATE_ENABLED', ' checked="checked"');
|
|
460 |
} else {
|
|
461 |
$template->set_var('PRIVATE_DISABLED', ' checked="checked"');
|
|
462 |
}
|
444 |
463 |
|
445 |
|
// Work-out if page trash feature is disabled, in-line, or separate
|
446 |
|
if(PAGE_TRASH == 'disabled')
|
447 |
|
{
|
448 |
|
$template->set_var('PAGE_TRASH_DISABLED', ' checked="checked"');
|
449 |
|
$template->set_var('DISPLAY_PAGE_TRASH_SEPARATE', 'display: none;');
|
450 |
|
} elseif(PAGE_TRASH == 'inline')
|
451 |
|
{
|
452 |
|
$template->set_var('PAGE_TRASH_INLINE', ' checked="checked"');
|
453 |
|
$template->set_var('DISPLAY_PAGE_TRASH_SEPARATE', 'display: none;');
|
454 |
|
} elseif(PAGE_TRASH == 'separate')
|
455 |
|
{
|
456 |
|
$template->set_var('PAGE_TRASH_SEPARATE', ' checked="checked"');
|
457 |
|
$template->set_var('DISPLAY_PAGE_TRASH_SEPARATE', 'display: inline;');
|
458 |
|
}
|
|
464 |
// Work-out if page trash feature is disabled, in-line, or separate
|
|
465 |
if(PAGE_TRASH == 'disabled')
|
|
466 |
{
|
|
467 |
$template->set_var('PAGE_TRASH_DISABLED', ' checked="checked"');
|
|
468 |
$template->set_var('DISPLAY_PAGE_TRASH_SEPARATE', 'display: none;');
|
|
469 |
} elseif(PAGE_TRASH == 'inline')
|
|
470 |
{
|
|
471 |
$template->set_var('PAGE_TRASH_INLINE', ' checked="checked"');
|
|
472 |
$template->set_var('DISPLAY_PAGE_TRASH_SEPARATE', 'display: none;');
|
|
473 |
} elseif(PAGE_TRASH == 'separate')
|
|
474 |
{
|
|
475 |
$template->set_var('PAGE_TRASH_SEPARATE', ' checked="checked"');
|
|
476 |
$template->set_var('DISPLAY_PAGE_TRASH_SEPARATE', 'display: inline;');
|
|
477 |
}
|
459 |
478 |
|
460 |
|
// Work-out if media home folde feature is enabled
|
461 |
|
if(HOME_FOLDERS)
|
462 |
|
{
|
463 |
|
$template->set_var('HOME_FOLDERS_ENABLED', ' checked="checked"');
|
464 |
|
} else {
|
465 |
|
$template->set_var('HOME_FOLDERS_DISABLED', ' checked="checked"');
|
466 |
|
}
|
|
479 |
// Work-out if media home folde feature is enabled
|
|
480 |
if(HOME_FOLDERS)
|
|
481 |
{
|
|
482 |
$template->set_var('HOME_FOLDERS_ENABLED', ' checked="checked"');
|
|
483 |
} else {
|
|
484 |
$template->set_var('HOME_FOLDERS_DISABLED', ' checked="checked"');
|
|
485 |
}
|
467 |
486 |
|
468 |
|
// Insert search select
|
469 |
|
if(SEARCH == 'private')
|
470 |
|
{
|
471 |
|
$template->set_var('PRIVATE_SEARCH', ' selected="selected"');
|
472 |
|
} elseif(SEARCH == 'registered') {
|
473 |
|
$template->set_var('REGISTERED_SEARCH', ' selected="selected"');
|
474 |
|
} elseif(SEARCH == 'none') {
|
475 |
|
$template->set_var('NONE_SEARCH', ' selected="selected"');
|
476 |
|
}
|
|
487 |
// Insert search select
|
|
488 |
if(SEARCH == 'private')
|
|
489 |
{
|
|
490 |
$template->set_var('PRIVATE_SEARCH', ' selected="selected"');
|
|
491 |
} elseif(SEARCH == 'registered') {
|
|
492 |
$template->set_var('REGISTERED_SEARCH', ' selected="selected"');
|
|
493 |
} elseif(SEARCH == 'none') {
|
|
494 |
$template->set_var('NONE_SEARCH', ' selected="selected"');
|
|
495 |
}
|
477 |
496 |
|
478 |
|
// Work-out if 777 permissions are set
|
479 |
|
if(STRING_FILE_MODE == '0777' AND STRING_DIR_MODE == '0777')
|
480 |
|
{
|
481 |
|
$template->set_var('WORLD_WRITEABLE_SELECTED', ' checked="checked"');
|
482 |
|
}
|
|
497 |
// Work-out if 777 permissions are set
|
|
498 |
if(STRING_FILE_MODE == '0777' AND STRING_DIR_MODE == '0777')
|
|
499 |
{
|
|
500 |
$template->set_var('WORLD_WRITEABLE_SELECTED', ' checked="checked"');
|
|
501 |
}
|
483 |
502 |
|
484 |
|
// Work-out which file mode boxes are checked
|
485 |
|
if(extract_permission(STRING_FILE_MODE, 'u', 'r'))
|
486 |
|
{
|
487 |
|
$template->set_var('FILE_U_R_CHECKED', ' checked="checked"');
|
488 |
|
}
|
489 |
|
if(extract_permission(STRING_FILE_MODE, 'u', 'w'))
|
490 |
|
{
|
491 |
|
$template->set_var('FILE_U_W_CHECKED', ' checked="checked"');
|
492 |
|
}
|
493 |
|
if(extract_permission(STRING_FILE_MODE, 'u', 'e'))
|
494 |
|
{
|
495 |
|
$template->set_var('FILE_U_E_CHECKED', ' checked="checked"');
|
496 |
|
}
|
497 |
|
if(extract_permission(STRING_FILE_MODE, 'g', 'r'))
|
498 |
|
{
|
499 |
|
$template->set_var('FILE_G_R_CHECKED', ' checked="checked"');
|
500 |
|
}
|
501 |
|
if(extract_permission(STRING_FILE_MODE, 'g', 'w'))
|
502 |
|
{
|
503 |
|
$template->set_var('FILE_G_W_CHECKED', ' checked="checked"');
|
504 |
|
}
|
505 |
|
if(extract_permission(STRING_FILE_MODE, 'g', 'e'))
|
506 |
|
{
|
507 |
|
$template->set_var('FILE_G_E_CHECKED', ' checked="checked"');
|
508 |
|
}
|
509 |
|
if(extract_permission(STRING_FILE_MODE, 'o', 'r'))
|
510 |
|
{
|
511 |
|
$template->set_var('FILE_O_R_CHECKED', ' checked="checked"');
|
512 |
|
}
|
513 |
|
if(extract_permission(STRING_FILE_MODE, 'o', 'w'))
|
514 |
|
{
|
515 |
|
$template->set_var('FILE_O_W_CHECKED', ' checked="checked"');
|
516 |
|
}
|
517 |
|
if(extract_permission(STRING_FILE_MODE, 'o', 'e'))
|
518 |
|
{
|
519 |
|
$template->set_var('FILE_O_E_CHECKED', ' checked="checked"');
|
520 |
|
}
|
521 |
|
// Work-out which dir mode boxes are checked
|
522 |
|
if(extract_permission(STRING_DIR_MODE, 'u', 'r'))
|
523 |
|
{
|
524 |
|
$template->set_var('DIR_U_R_CHECKED', ' checked="checked"');
|
525 |
|
}
|
526 |
|
if(extract_permission(STRING_DIR_MODE, 'u', 'w'))
|
527 |
|
{
|
528 |
|
$template->set_var('DIR_U_W_CHECKED', ' checked="checked"');
|
529 |
|
}
|
530 |
|
if(extract_permission(STRING_DIR_MODE, 'u', 'e'))
|
531 |
|
{
|
532 |
|
$template->set_var('DIR_U_E_CHECKED', ' checked="checked"');
|
533 |
|
}
|
534 |
|
if(extract_permission(STRING_DIR_MODE, 'g', 'r'))
|
535 |
|
{
|
536 |
|
$template->set_var('DIR_G_R_CHECKED', ' checked="checked"');
|
537 |
|
}
|
538 |
|
if(extract_permission(STRING_DIR_MODE, 'g', 'w'))
|
539 |
|
{
|
540 |
|
$template->set_var('DIR_G_W_CHECKED', ' checked="checked"');
|
541 |
|
}
|
542 |
|
if(extract_permission(STRING_DIR_MODE, 'g', 'e'))
|
543 |
|
{
|
544 |
|
$template->set_var('DIR_G_E_CHECKED', ' checked="checked"');
|
545 |
|
}
|
546 |
|
if(extract_permission(STRING_DIR_MODE, 'o', 'r'))
|
547 |
|
{
|
548 |
|
$template->set_var('DIR_O_R_CHECKED', ' checked="checked"');
|
549 |
|
}
|
550 |
|
if(extract_permission(STRING_DIR_MODE, 'o', 'w'))
|
551 |
|
{
|
552 |
|
$template->set_var('DIR_O_W_CHECKED', ' checked="checked"');
|
553 |
|
}
|
554 |
|
if(extract_permission(STRING_DIR_MODE, 'o', 'e'))
|
555 |
|
{
|
556 |
|
$template->set_var('DIR_O_E_CHECKED', ' checked="checked"');
|
557 |
|
}
|
|
503 |
// Work-out which file mode boxes are checked
|
|
504 |
if(extract_permission(STRING_FILE_MODE, 'u', 'r'))
|
|
505 |
{
|
|
506 |
$template->set_var('FILE_U_R_CHECKED', ' checked="checked"');
|
|
507 |
}
|
|
508 |
if(extract_permission(STRING_FILE_MODE, 'u', 'w'))
|
|
509 |
{
|
|
510 |
$template->set_var('FILE_U_W_CHECKED', ' checked="checked"');
|
|
511 |
}
|
|
512 |
if(extract_permission(STRING_FILE_MODE, 'u', 'e'))
|
|
513 |
{
|
|
514 |
$template->set_var('FILE_U_E_CHECKED', ' checked="checked"');
|
|
515 |
}
|
|
516 |
if(extract_permission(STRING_FILE_MODE, 'g', 'r'))
|
|
517 |
{
|
|
518 |
$template->set_var('FILE_G_R_CHECKED', ' checked="checked"');
|
|
519 |
}
|
|
520 |
if(extract_permission(STRING_FILE_MODE, 'g', 'w'))
|
|
521 |
{
|
|
522 |
$template->set_var('FILE_G_W_CHECKED', ' checked="checked"');
|
|
523 |
}
|
|
524 |
if(extract_permission(STRING_FILE_MODE, 'g', 'e'))
|
|
525 |
{
|
|
526 |
$template->set_var('FILE_G_E_CHECKED', ' checked="checked"');
|
|
527 |
}
|
|
528 |
if(extract_permission(STRING_FILE_MODE, 'o', 'r'))
|
|
529 |
{
|
|
530 |
$template->set_var('FILE_O_R_CHECKED', ' checked="checked"');
|
|
531 |
}
|
|
532 |
if(extract_permission(STRING_FILE_MODE, 'o', 'w'))
|
|
533 |
{
|
|
534 |
$template->set_var('FILE_O_W_CHECKED', ' checked="checked"');
|
|
535 |
}
|
|
536 |
if(extract_permission(STRING_FILE_MODE, 'o', 'e'))
|
|
537 |
{
|
|
538 |
$template->set_var('FILE_O_E_CHECKED', ' checked="checked"');
|
|
539 |
}
|
|
540 |
// Work-out which dir mode boxes are checked
|
|
541 |
if(extract_permission(STRING_DIR_MODE, 'u', 'r'))
|
|
542 |
{
|
|
543 |
$template->set_var('DIR_U_R_CHECKED', ' checked="checked"');
|
|
544 |
}
|
|
545 |
if(extract_permission(STRING_DIR_MODE, 'u', 'w'))
|
|
546 |
{
|
|
547 |
$template->set_var('DIR_U_W_CHECKED', ' checked="checked"');
|
|
548 |
}
|
|
549 |
if(extract_permission(STRING_DIR_MODE, 'u', 'e'))
|
|
550 |
{
|
|
551 |
$template->set_var('DIR_U_E_CHECKED', ' checked="checked"');
|
|
552 |
}
|
|
553 |
if(extract_permission(STRING_DIR_MODE, 'g', 'r'))
|
|
554 |
{
|
|
555 |
$template->set_var('DIR_G_R_CHECKED', ' checked="checked"');
|
|
556 |
}
|
|
557 |
if(extract_permission(STRING_DIR_MODE, 'g', 'w'))
|
|
558 |
{
|
|
559 |
$template->set_var('DIR_G_W_CHECKED', ' checked="checked"');
|
|
560 |
}
|
|
561 |
if(extract_permission(STRING_DIR_MODE, 'g', 'e'))
|
|
562 |
{
|
|
563 |
$template->set_var('DIR_G_E_CHECKED', ' checked="checked"');
|
|
564 |
}
|
|
565 |
if(extract_permission(STRING_DIR_MODE, 'o', 'r'))
|
|
566 |
{
|
|
567 |
$template->set_var('DIR_O_R_CHECKED', ' checked="checked"');
|
|
568 |
}
|
|
569 |
if(extract_permission(STRING_DIR_MODE, 'o', 'w'))
|
|
570 |
{
|
|
571 |
$template->set_var('DIR_O_W_CHECKED', ' checked="checked"');
|
|
572 |
}
|
|
573 |
if(extract_permission(STRING_DIR_MODE, 'o', 'e'))
|
|
574 |
{
|
|
575 |
$template->set_var('DIR_O_E_CHECKED', ' checked="checked"');
|
|
576 |
}
|
558 |
577 |
|
559 |
|
// Insert Server Email value into template
|
560 |
|
$template->set_var('SERVER_EMAIL', SERVER_EMAIL);
|
|
578 |
// Insert Server Email value into template
|
|
579 |
$template->set_var('SERVER_EMAIL', SERVER_EMAIL);
|
561 |
580 |
|
562 |
|
// Insert groups into signup list
|
563 |
|
$template->set_block('main_block', 'group_list_block', 'group_list');
|
564 |
|
$results = $database->query("SELECT group_id, name FROM ".TABLE_PREFIX."groups WHERE group_id != '1'");
|
565 |
|
if($results->numRows() > 0)
|
566 |
|
{
|
567 |
|
while($group = $results->fetchRow())
|
568 |
|
{
|
569 |
|
$template->set_var('ID', $group['group_id']);
|
570 |
|
$template->set_var('NAME', $group['name']);
|
571 |
|
if(FRONTEND_SIGNUP == $group['group_id'])
|
572 |
|
{
|
573 |
|
$template->set_var('SELECTED', ' selected="selected"');
|
574 |
|
} else {
|
575 |
|
$template->set_var('SELECTED', '');
|
|
581 |
// Insert groups into signup list
|
|
582 |
$results = $database->query("SELECT group_id, name FROM ".TABLE_PREFIX."groups WHERE group_id != '1'");
|
|
583 |
if($results->numRows() > 0)
|
|
584 |
{
|
|
585 |
while($group = $results->fetchRow())
|
|
586 |
{
|
|
587 |
$template->set_var('ID', $group['group_id']);
|
|
588 |
$template->set_var('NAME', $group['name']);
|
|
589 |
if(FRONTEND_SIGNUP == $group['group_id'])
|
|
590 |
{
|
|
591 |
$template->set_var('SELECTED', ' selected="selected"');
|
|
592 |
} else {
|
|
593 |
$template->set_var('SELECTED', '');
|
|
594 |
}
|
|
595 |
$template->parse('group_list', 'group_list_block', true);
|
576 |
596 |
}
|
|
597 |
} else {
|
|
598 |
$template->set_var('ID', 'disabled');
|
|
599 |
$template->set_var('NAME', $MESSAGE['GROUPS']['NO_GROUPS_FOUND']);
|
577 |
600 |
$template->parse('group_list', 'group_list_block', true);
|
578 |
601 |
}
|
579 |
|
} else {
|
580 |
|
$template->set_var('ID', 'disabled');
|
581 |
|
$template->set_var('NAME', $MESSAGE['GROUPS']['NO_GROUPS_FOUND']);
|
582 |
|
$template->parse('group_list', 'group_list_block', true);
|
583 |
|
}
|
584 |
602 |
|
585 |
|
// Insert language headings
|
586 |
|
$template->set_var(array(
|
|
603 |
// Insert language headings
|
|
604 |
$template->set_var(array(
|
587 |
605 |
'HEADING_GENERAL_SETTINGS' => $HEADING['GENERAL_SETTINGS'],
|
588 |
606 |
'HEADING_DEFAULT_SETTINGS' => $HEADING['DEFAULT_SETTINGS'],
|
589 |
607 |
'HEADING_SEARCH_SETTINGS' => $HEADING['SEARCH_SETTINGS'],
|
... | ... | |
592 |
610 |
'HEADING_ADMINISTRATION_TOOLS' => $HEADING['ADMINISTRATION_TOOLS']
|
593 |
611 |
)
|
594 |
612 |
);
|
595 |
|
// Insert language text and messages
|
596 |
|
$template->set_var(array(
|
|
613 |
// Insert language text and messages
|
|
614 |
$template->set_var(array(
|
597 |
615 |
'TEXT_WEBSITE_TITLE' => $TEXT['WEBSITE_TITLE'],
|
598 |
616 |
'TEXT_WEBSITE_DESCRIPTION' => $TEXT['WEBSITE_DESCRIPTION'],
|
599 |
617 |
'TEXT_WEBSITE_KEYWORDS' => $TEXT['WEBSITE_KEYWORDS'],
|
... | ... | |
692 |
710 |
'TEXT_MODULE_ORDER' => $TEXT['MODULE_ORDER'],
|
693 |
711 |
'TEXT_MAX_EXCERPT' => $TEXT['MAX_EXCERPT'],
|
694 |
712 |
'TEXT_TIME_LIMIT' => $TEXT['TIME_LIMIT']
|
695 |
|
)
|
696 |
|
);
|
|
713 |
));
|
697 |
714 |
|
|
715 |
if($is_advanced)
|
|
716 |
{
|
|
717 |
$template->parse('show_page_level_limit', 'show_page_level_limit_block', true);
|
|
718 |
$template->parse('show_checkbox_1', 'show_checkbox_1_block', true);
|
|
719 |
$template->parse('show_checkbox_2', 'show_checkbox_2_block', true);
|
|
720 |
$template->parse('show_checkbox_3', 'show_checkbox_3_block', true);
|
|
721 |
$template->parse('show_php_error_level', 'show_php_error_level_block', true);
|
|
722 |
$template->parse('show_charset', 'show_charset_block', true);
|
|
723 |
$template->parse('show_access', 'show_access_block', true);
|
|
724 |
$template->parse('show_wysiwyg', 'show_wysiwyg_block', true);
|
|
725 |
$template->parse('show_search', 'show_search_block', false);
|
|
726 |
$template->parse('show_redirect_timer', 'show_redirect_timer_block', true);
|
|
727 |
}else {
|
|
728 |
$template->set_block('show_page_level_limit', '');
|
|
729 |
$template->set_block('show_checkbox_1', '');
|
|
730 |
$template->set_block('show_checkbox_2', '');
|
|
731 |
$template->set_block('show_checkbox_3', '');
|
|
732 |
$template->set_block('show_php_error_level', '');
|
|
733 |
$template->set_block('show_charset', '');
|
|
734 |
$template->set_block('show_access', '');
|
|
735 |
$template->set_block('show_wysiwyg', '');
|
|
736 |
$template->set_block('show_search', '');
|
|
737 |
$template->set_block('show_redirect_timer', '');
|
|
738 |
}
|
|
739 |
|
698 |
740 |
// Parse template objects output
|
699 |
741 |
$template->parse('main', 'main_block', false);
|
700 |
742 |
$template->pparse('output', 'page');
|
Fixed update search settings
Fixed bug in /modules/admin.php