]> git.wh0rd.org - tt-rss.git/blame - classes/pref/prefs.php
pluginhost: allow loading user plugins from plugins.local
[tt-rss.git] / classes / pref / prefs.php
CommitLineData
1395083e 1<?php
dfad9d7a 2
369dbc19 3class Pref_Prefs extends Handler_Protected {
1395083e 4
dfad9d7a
AD
5 private $pref_help = array();
6 private $pref_sections = array();
7
8484ce22 8 function csrf_ignore($method) {
9d76e754 9 $csrf_ignored = array("index", "updateself", "customizecss", "editprefprofiles");
8484ce22
AD
10
11 return array_search($method, $csrf_ignored) !== false;
12 }
13
48ed517e
AD
14 function __construct($args) {
15 parent::__construct($args);
dfad9d7a
AD
16
17 $this->pref_sections = array(
18 1 => __('General'),
19 2 => __('Interface'),
20 3 => __('Advanced'),
21 4 => __('Digest')
22 );
23
24 $this->pref_help = array(
9db8e607 25 "ALLOW_DUPLICATE_POSTS" => array(__("Allow duplicate articles"), ""),
9db8e607
AD
26 "BLACKLISTED_TAGS" => array(__("Blacklisted tags"), __("When auto-detecting tags in articles these tags will not be applied (comma-separated list).")),
27 "CDM_AUTO_CATCHUP" => array(__("Automatically mark articles as read"), __("This option enables marking articles as read automatically while you scroll article list.")),
5f462963 28 "CDM_EXPANDED" => array(__("Automatically expand articles in combined mode"), ""),
dfad9d7a 29 "COMBINED_DISPLAY_MODE" => array(__("Combined feed display"), __("Display expanded list of feed articles, instead of separate displays for headlines and article content")),
5f462963
AD
30 "CONFIRM_FEED_CATCHUP" => array(__("Confirm marking feed as read"), ""),
31 "DEFAULT_ARTICLE_LIMIT" => array(__("Amount of articles to display at once"), ""),
723bcdb2 32 "DEFAULT_UPDATE_INTERVAL" => array(__("Default feed update interval"), __("Shortest interval at which a feed will be checked for updates regardless of update method")),
5f462963 33 "DIGEST_CATCHUP" => array(__("Mark articles in e-mail digest as read"), ""),
9db8e607 34 "DIGEST_ENABLE" => array(__("Enable e-mail digest"), __("This option enables sending daily digest of new (and unread) headlines on your configured e-mail address")),
dfad9d7a 35 "DIGEST_PREFERRED_TIME" => array(__("Try to send digests around specified time"), __("Uses UTC timezone")),
9db8e607 36 "ENABLE_API_ACCESS" => array(__("Enable API access"), __("Allows external clients to access this account through the API")),
5f462963
AD
37 "ENABLE_FEED_CATS" => array(__("Enable feed categories"), ""),
38 "FEEDS_SORT_BY_UNREAD" => array(__("Sort feeds by unread articles count"), ""),
39 "FRESH_ARTICLE_MAX_AGE" => array(__("Maximum age of fresh articles (in hours)"), ""),
40 "HIDE_READ_FEEDS" => array(__("Hide feeds with no unread articles"), ""),
9db8e607 41 "HIDE_READ_SHOWS_SPECIAL" => array(__("Show special feeds when hiding read feeds"), ""),
8429af52 42 "LONG_DATE_FORMAT" => array(__("Long date format"), __("The syntax used is identical to the PHP <a href='http://php.net/manual/function.date.php'>date()</a> function.")),
dfad9d7a 43 "ON_CATCHUP_SHOW_NEXT_FEED" => array(__("On catchup show next feed"), __("Automatically open next feed with unread articles after marking one as read")),
5f462963
AD
44 "PURGE_OLD_DAYS" => array(__("Purge articles after this number of days (0 - disables)"), ""),
45 "PURGE_UNREAD_ARTICLES" => array(__("Purge unread articles"), ""),
46 "REVERSE_HEADLINES" => array(__("Reverse headline order (oldest first)"), ""),
47 "SHORT_DATE_FORMAT" => array(__("Short date format"), ""),
48 "SHOW_CONTENT_PREVIEW" => array(__("Show content preview in headlines list"), ""),
dfad9d7a
AD
49 "SORT_HEADLINES_BY_FEED_DATE" => array(__("Sort headlines by feed date"), __("Use feed-specified date to sort headlines instead of local import date.")),
50 "SSL_CERT_SERIAL" => array(__("Login with an SSL certificate"), __("Click to register your SSL client certificate with tt-rss")),
5f462963 51 "STRIP_IMAGES" => array(__("Do not embed images in articles"), ""),
dfad9d7a 52 "STRIP_UNSAFE_TAGS" => array(__("Strip unsafe tags from articles"), __("Strip all but most common HTML tags when reading articles.")),
dfad9d7a 53 "USER_STYLESHEET" => array(__("Customize stylesheet"), __("Customize CSS stylesheet to your liking")),
bd02d29e 54 "USER_TIMEZONE" => array(__("Time zone"), ""),
8ef9645d 55 "VFEED_GROUP_BY_FEED" => array(__("Group headlines in virtual feeds"), __("Special feeds, labels, and categories are grouped by originating feeds")),
7b149552 56 "USER_LANGUAGE" => array(__("Language")),
bd02d29e 57 "USER_CSS_THEME" => array(__("Theme"), __("Select one of the available CSS themes"))
dfad9d7a
AD
58 );
59 }
60
1395083e
AD
61 function changepassword() {
62
63 $old_pw = $_POST["old_password"];
64 $new_pw = $_POST["new_password"];
65 $con_pw = $_POST["confirm_password"];
66
67 if ($old_pw == "") {
68 print "ERROR: ".__("Old password cannot be blank.");
69 return;
70 }
71
72 if ($new_pw == "") {
73 print "ERROR: ".__("New password cannot be blank.");
74 return;
75 }
76
77 if ($new_pw != $con_pw) {
78 print "ERROR: ".__("Entered passwords do not match.");
79 return;
80 }
81
1ffe3391 82 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
1395083e 83
d5fd183d
AD
84 if (method_exists($authenticator, "change_password")) {
85 print $authenticator->change_password($_SESSION["uid"], $old_pw, $new_pw);
098df83b 86 } else {
d5fd183d 87 print "ERROR: ".__("Function not supported by authentication module.");
098df83b 88 }
1395083e
AD
89 }
90
91 function saveconfig() {
451ff722
AD
92 $boolean_prefs = explode(",", $_POST["boolean_prefs"]);
93
94 foreach ($boolean_prefs as $pref) {
95 if (!isset($_POST[$pref])) $_POST[$pref] = 'false';
96 }
97
29c8fa08
AD
98 $need_reload = false;
99
1395083e
AD
100 foreach (array_keys($_POST) as $pref_name) {
101
d9c85e0f
AD
102 $pref_name = $this->dbh->escape_string($pref_name);
103 $value = $this->dbh->escape_string($_POST[$pref_name]);
1395083e 104
1b9b19af 105 if ($pref_name == 'DIGEST_PREFERRED_TIME') {
a42c55f0 106 if (get_pref('DIGEST_PREFERRED_TIME') != $value) {
1b9b19af 107
d9c85e0f 108 $this->dbh->query("UPDATE ttrss_users SET
1b9b19af
AD
109 last_digest_sent = NULL WHERE id = " . $_SESSION['uid']);
110
111 }
112 }
113
7b149552 114 if ($pref_name == "USER_LANGUAGE") {
29c8fa08 115 if ($_SESSION["language"] != $value) {
29c8fa08
AD
116 $need_reload = true;
117 }
29c8fa08 118 }
1395083e 119
7b149552 120 set_pref($pref_name, $value);
1395083e
AD
121 }
122
29c8fa08
AD
123 if ($need_reload) {
124 print "PREFS_NEED_RELOAD";
125 } else {
126 print __("The configuration was saved.");
127 }
1395083e
AD
128 }
129
130 function getHelp() {
131
d9c85e0f 132 $pref_name = $this->dbh->escape_string($_REQUEST["pn"]);
1395083e 133
d9c85e0f 134 $result = $this->dbh->query("SELECT help_text FROM ttrss_prefs
1395083e
AD
135 WHERE pref_name = '$pref_name'");
136
d9c85e0f
AD
137 if ($this->dbh->num_rows($result) > 0) {
138 $help_text = $this->dbh->fetch_result($result, 0, "help_text");
1395083e
AD
139 print $help_text;
140 } else {
141 printf(__("Unknown option: %s"), $pref_name);
142 }
143 }
144
145 function changeemail() {
146
d9c85e0f
AD
147 $email = $this->dbh->escape_string($_POST["email"]);
148 $full_name = $this->dbh->escape_string($_POST["full_name"]);
1395083e
AD
149
150 $active_uid = $_SESSION["uid"];
151
d9c85e0f 152 $this->dbh->query("UPDATE ttrss_users SET email = '$email',
1395083e
AD
153 full_name = '$full_name' WHERE id = '$active_uid'");
154
155 print __("Your personal data has been saved.");
156
157 return;
158 }
159
160 function resetconfig() {
161
162 $_SESSION["prefs_op_result"] = "reset-to-defaults";
163
164 if ($_SESSION["profile"]) {
165 $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
166 } else {
167 $profile_qpart = "profile IS NULL";
168 }
169
d9c85e0f 170 $this->dbh->query("DELETE FROM ttrss_user_prefs
1395083e
AD
171 WHERE $profile_qpart AND owner_uid = ".$_SESSION["uid"]);
172
a42c55f0 173 initialize_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
bf878338
AD
174
175 echo __("Your preferences are now set to default values.");
1395083e
AD
176 }
177
178 function index() {
179
180 global $access_level_names;
181
8aa01d79 182 $prefs_blacklist = array("STRIP_UNSAFE_TAGS", "REVERSE_HEADLINES",
78744d48
AD
183 "SORT_HEADLINES_BY_FEED_DATE", "DEFAULT_ARTICLE_LIMIT",
184 "FEEDS_SORT_BY_UNREAD");
33b3db33
AD
185
186 /* "FEEDS_SORT_BY_UNREAD", "HIDE_READ_FEEDS", "REVERSE_HEADLINES" */
1395083e
AD
187
188 $profile_blacklist = array("ALLOW_DUPLICATE_POSTS", "PURGE_OLD_DAYS",
189 "PURGE_UNREAD_ARTICLES", "DIGEST_ENABLE", "DIGEST_CATCHUP",
190 "BLACKLISTED_TAGS", "ENABLE_API_ACCESS", "UPDATE_POST_ON_CHECKSUM_CHANGE",
191 "DEFAULT_UPDATE_INTERVAL", "USER_TIMEZONE", "SORT_HEADLINES_BY_FEED_DATE",
6d9455e9 192 "SSL_CERT_SERIAL", "DIGEST_PREFERRED_TIME");
1395083e
AD
193
194
d4c64ecc 195 $_SESSION["prefs_op_result"] = "";
1395083e 196
d4c64ecc
AD
197 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
198 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Personal data / Authentication')."\">";
1395083e 199
d4c64ecc 200 print "<form dojoType=\"dijit.form.Form\" id=\"changeUserdataForm\">";
1395083e 201
d4c64ecc
AD
202 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
203 evt.preventDefault();
204 if (this.validate()) {
205 notify_progress('Saving data...', true);
1395083e 206
d4c64ecc
AD
207 new Ajax.Request('backend.php', {
208 parameters: dojo.objectToQuery(this.getValues()),
209 onComplete: function(transport) {
210 notify_callback2(transport);
211 } });
1395083e 212
d4c64ecc
AD
213 }
214 </script>";
1395083e 215
d4c64ecc 216 print "<table width=\"100%\" class=\"prefPrefsList\">";
1395083e 217
fb70f26e
AD
218 print "<h2>" . __("Personal data") . "</h2>";
219
d9c85e0f 220 $result = $this->dbh->query("SELECT email,full_name,otp_enabled,
d4c64ecc
AD
221 access_level FROM ttrss_users
222 WHERE id = ".$_SESSION["uid"]);
1395083e 223
d9c85e0f
AD
224 $email = htmlspecialchars($this->dbh->fetch_result($result, 0, "email"));
225 $full_name = htmlspecialchars($this->dbh->fetch_result($result, 0, "full_name"));
226 $otp_enabled = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "otp_enabled"));
1395083e 227
d4c64ecc
AD
228 print "<tr><td width=\"40%\">".__('Full name')."</td>";
229 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" name=\"full_name\" required=\"1\"
230 value=\"$full_name\"></td></tr>";
1395083e 231
d4c64ecc
AD
232 print "<tr><td width=\"40%\">".__('E-mail')."</td>";
233 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" name=\"email\" required=\"1\" value=\"$email\"></td></tr>";
1395083e 234
0d421af8 235 if (!SINGLE_USER_MODE && !$_SESSION["hide_hello"]) {
949b1a94 236
d9c85e0f 237 $access_level = $this->dbh->fetch_result($result, 0, "access_level");
d4c64ecc
AD
238 print "<tr><td width=\"40%\">".__('Access level')."</td>";
239 print "<td>" . $access_level_names[$access_level] . "</td></tr>";
240 }
1395083e 241
d4c64ecc 242 print "</table>";
1395083e 243
d4c64ecc
AD
244 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
245 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"changeemail\">";
1395083e 246
d4c64ecc
AD
247 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
248 __("Save data")."</button>";
1395083e 249
d4c64ecc 250 print "</form>";
1395083e 251
0f28f81f 252 if ($_SESSION["auth_module"]) {
1ffe3391 253 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
d5fd183d
AD
254 } else {
255 $authenticator = false;
256 }
257
258 if ($authenticator && method_exists($authenticator, "change_password")) {
1395083e 259
fb70f26e
AD
260 print "<h2>" . __("Password") . "</h2>";
261
d9c85e0f 262 $result = $this->dbh->query("SELECT id FROM ttrss_users
1395083e
AD
263 WHERE id = ".$_SESSION["uid"]." AND pwd_hash
264 = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8'");
265
d9c85e0f 266 if ($this->dbh->num_rows($result) != 0) {
1395083e
AD
267 print format_warning(__("Your password is at default value, please change it."), "default_pass_warning");
268 }
269
270 print "<form dojoType=\"dijit.form.Form\">";
271
272 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
273 evt.preventDefault();
274 if (this.validate()) {
275 notify_progress('Changing password...', true);
276
277 new Ajax.Request('backend.php', {
278 parameters: dojo.objectToQuery(this.getValues()),
279 onComplete: function(transport) {
280 notify('');
281 if (transport.responseText.indexOf('ERROR: ') == 0) {
282 notify_error(transport.responseText.replace('ERROR: ', ''));
283 } else {
284 notify_info(transport.responseText);
285 var warn = $('default_pass_warning');
286 if (warn) Element.hide(warn);
287 }
288 }});
289 this.reset();
290 }
291 </script>";
292
3ca8af7f 293 if ($otp_enabled) {
9a73994c 294 print_notice(__("Changing your current password will disable OTP."));
3ca8af7f
AD
295 }
296
1395083e
AD
297 print "<table width=\"100%\" class=\"prefPrefsList\">";
298
299 print "<tr><td width=\"40%\">".__("Old password")."</td>";
300 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"old_password\"></td></tr>";
301
302 print "<tr><td width=\"40%\">".__("New password")."</td>";
303
304 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
305 name=\"new_password\"></td></tr>";
306
307 print "<tr><td width=\"40%\">".__("Confirm password")."</td>";
308
309 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\" name=\"confirm_password\"></td></tr>";
310
311 print "</table>";
312
313 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
314 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"changepassword\">";
315
316 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
317 __("Change password")."</button>";
318
319 print "</form>";
320
0f28f81f 321 if ($_SESSION["auth_module"] == "auth_internal") {
fb70f26e
AD
322
323 print "<h2>" . __("One time passwords / Authenticator") . "</h2>";
324
325 if ($otp_enabled) {
326
9a73994c 327 print_notice(__("One time passwords are currently enabled. Enter your current password below to disable."));
3ca8af7f
AD
328
329 print "<form dojoType=\"dijit.form.Form\">";
330
331 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
332 evt.preventDefault();
333 if (this.validate()) {
334 notify_progress('Disabling OTP', true);
335
336 new Ajax.Request('backend.php', {
337 parameters: dojo.objectToQuery(this.getValues()),
338 onComplete: function(transport) {
339 notify('');
340 if (transport.responseText.indexOf('ERROR: ') == 0) {
341 notify_error(transport.responseText.replace('ERROR: ', ''));
342 } else {
343 window.location.reload();
344 }
345 }});
346 this.reset();
347 }
348 </script>";
349
350 print "<table width=\"100%\" class=\"prefPrefsList\">";
351
352 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
353
354 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
355 name=\"password\"></td></tr>";
356
357 print "</table>";
358
359 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
360 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"otpdisable\">";
361
362 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
363 __("Disable OTP")."</button>";
364
365 print "</form>";
fb70f26e 366
a845a3d5 367 } else if (function_exists("imagecreatefromstring")) {
fb70f26e 368
11334fdf 369 print_warning(__("You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."));
fb70f26e
AD
370
371 print "<p>".__("Scan the following code by the Authenticator application:")."</p>";
372
373 $csrf_token = $_SESSION["csrf_token"];
374
375 print "<img src=\"backend.php?op=pref-prefs&method=otpqrcode&csrf_token=$csrf_token\">";
376
377 print "<form dojoType=\"dijit.form.Form\" id=\"changeOtpForm\">";
378
379 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
3ca8af7f 380 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"otpenable\">";
fb70f26e
AD
381
382 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
383 evt.preventDefault();
384 if (this.validate()) {
385 notify_progress('Saving data...', true);
386
387 new Ajax.Request('backend.php', {
388 parameters: dojo.objectToQuery(this.getValues()),
389 onComplete: function(transport) {
3ca8af7f 390 notify('');
9deca86d
AD
391 if (transport.responseText.indexOf('ERROR:') == 0) {
392 notify_error(transport.responseText.replace('ERROR:', ''));
3ca8af7f
AD
393 } else {
394 window.location.reload();
395 }
fb70f26e
AD
396 } });
397
398 }
399 </script>";
400
3ca8af7f
AD
401 print "<table width=\"100%\" class=\"prefPrefsList\">";
402
403 print "<tr><td width=\"40%\">".__("Enter your password")."</td>";
404
405 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" type=\"password\" required=\"1\"
406 name=\"password\"></td></tr>";
407
9deca86d
AD
408 print "<tr><td width=\"40%\">".__("Enter the generated one time password")."</td>";
409
410 print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" autocomplete=\"off\"
411 required=\"1\"
412 name=\"otp\"></td></tr>";
3ca8af7f 413
9deca86d 414 print "<tr><td colspan=\"2\">";
fb70f26e 415
3ca8af7f
AD
416 print "</td></tr><tr><td colspan=\"2\">";
417
418 print "</td></tr>";
419 print "</table>";
420
fb70f26e 421 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
3ca8af7f 422 __("Enable OTP")."</button>";
fb70f26e
AD
423
424 print "</form>";
425
a845a3d5
AD
426 } else {
427
428 print_notice(__("PHP GD functions are required for OTP support."));
429
fb70f26e
AD
430 }
431
432 }
1395083e
AD
433 }
434
1ffe3391 435 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
699daf58
AD
436 "hook_prefs_tab_section", "prefPrefsAuth");
437
d4c64ecc
AD
438 print "</div>"; #pane
439
1395083e
AD
440 print "<div dojoType=\"dijit.layout.AccordionPane\" selected=\"true\" title=\"".__('Preferences')."\">";
441
442 print "<form dojoType=\"dijit.form.Form\" id=\"changeSettingsForm\">";
443
122e9d78
AD
444 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt, quit\">
445 if (evt) evt.preventDefault();
1395083e
AD
446 if (this.validate()) {
447 console.log(dojo.objectToQuery(this.getValues()));
448
449 new Ajax.Request('backend.php', {
450 parameters: dojo.objectToQuery(this.getValues()),
451 onComplete: function(transport) {
452 var msg = transport.responseText;
29c8fa08
AD
453 if (quit) {
454 gotoMain();
455 } else {
456 if (msg == 'PREFS_NEED_RELOAD') {
457 window.location.reload();
458 } else {
459 notify_info(msg);
460 }
461 }
1395083e
AD
462 } });
463 }
464 </script>";
465
466 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
467
468 print '<div dojoType="dijit.layout.ContentPane" region="center" style="overflow-y : auto">';
469
470 if ($_SESSION["profile"]) {
9a73994c 471 print_notice(__("Some preferences are only available in default profile."));
1395083e
AD
472 }
473
474 if ($_SESSION["profile"]) {
a42c55f0 475 initialize_user_prefs($_SESSION["uid"], $_SESSION["profile"]);
1395083e
AD
476 $profile_qpart = "profile = '" . $_SESSION["profile"] . "'";
477 } else {
a42c55f0 478 initialize_user_prefs($_SESSION["uid"]);
1395083e
AD
479 $profile_qpart = "profile IS NULL";
480 }
481
744a1b00 482 /* if ($_SESSION["prefs_show_advanced"])
f9ebb32c
AD
483 $access_query = "true";
484 else
744a1b00
AD
485 $access_query = "(access_level = 0 AND section_id != 3)"; */
486
487 $access_query = 'true';
f9ebb32c 488
d9c85e0f 489 $result = $this->dbh->query("SELECT DISTINCT
dfad9d7a 490 ttrss_user_prefs.pref_name,value,type_name,
f9ebb32c 491 ttrss_prefs_sections.order_id,
dfad9d7a 492 def_value,section_id
1395083e
AD
493 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
494 WHERE type_id = ttrss_prefs_types.id AND
495 $profile_qpart AND
496 section_id = ttrss_prefs_sections.id AND
497 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
f9ebb32c 498 $access_query AND
1395083e 499 owner_uid = ".$_SESSION["uid"]."
dfad9d7a 500 ORDER BY ttrss_prefs_sections.order_id,pref_name");
1395083e
AD
501
502 $lnum = 0;
503
504 $active_section = "";
505
451ff722
AD
506 $listed_boolean_prefs = array();
507
d9c85e0f 508 while ($line = $this->dbh->fetch_assoc($result)) {
1395083e
AD
509
510 if (in_array($line["pref_name"], $prefs_blacklist)) {
511 continue;
512 }
513
dfad9d7a
AD
514 $type_name = $line["type_name"];
515 $pref_name = $line["pref_name"];
516 $section_name = $this->getSectionName($line["section_id"]);
517 $value = $line["value"];
518
519 $short_desc = $this->getShortDesc($pref_name);
520 $help_text = $this->getHelpText($pref_name);
521
522 if (!$short_desc) continue;
523
1395083e
AD
524 if ($_SESSION["profile"] && in_array($line["pref_name"],
525 $profile_blacklist)) {
526 continue;
527 }
528
dfad9d7a 529 if ($active_section != $line["section_id"]) {
1395083e
AD
530
531 if ($active_section != "") {
532 print "</table>";
533 }
534
535 print "<table width=\"100%\" class=\"prefPrefsList\">";
536
dfad9d7a 537 $active_section = $line["section_id"];
1395083e 538
dfad9d7a 539 print "<tr><td colspan=\"3\"><h3>".$section_name."</h3></td></tr>";
1395083e 540
1395083e
AD
541 $lnum = 0;
542 }
543
544 print "<tr>";
545
451ff722
AD
546 print "<td width=\"40%\" class=\"prefName\" id=\"$pref_name\">";
547 print "<label for='CB_$pref_name'>";
dfad9d7a 548 print $short_desc;
451ff722 549 print "</label>";
1395083e
AD
550
551 if ($help_text) print "<div class=\"prefHelp\">".__($help_text)."</div>";
552
553 print "</td>";
554
555 print "<td class=\"prefValue\">";
556
7b149552
AD
557 if ($pref_name == "USER_LANGUAGE") {
558 print_select_hash($pref_name, $value, get_translations(),
559 "style='width : 220px; margin : 0px' dojoType='dijit.form.Select'");
560
561 } else if ($pref_name == "USER_TIMEZONE") {
1395083e
AD
562
563 $timezones = explode("\n", file_get_contents("lib/timezones.txt"));
564
565 print_select($pref_name, $value, $timezones, 'dojoType="dijit.form.FilteringSelect"');
566 } else if ($pref_name == "USER_STYLESHEET") {
567
568 print "<button dojoType=\"dijit.form.Button\"
569 onclick=\"customizeCSS()\">" . __('Customize') . "</button>";
570
5d40efc9
AD
571 } else if ($pref_name == "USER_CSS_THEME") {
572
f6cbe9a5
AD
573 $themes = array_filter(array_map("basename", glob("themes/*.css")),
574 "theme_valid");
5d40efc9
AD
575
576 print_select($pref_name, $value, $themes,
577 'dojoType="dijit.form.Select"');
578
579
1395083e
AD
580 } else if ($pref_name == "DEFAULT_UPDATE_INTERVAL") {
581
582 global $update_intervals_nodefault;
583
584 print_select_hash($pref_name, $value, $update_intervals_nodefault,
585 'dojoType="dijit.form.Select"');
586
587 } else if ($type_name == "bool") {
588
451ff722
AD
589 array_push($listed_boolean_prefs, $pref_name);
590
591 $checked = ($value == "true") ? "checked=\"checked\"" : "";
1395083e
AD
592
593 if ($pref_name == "PURGE_UNREAD_ARTICLES" && FORCE_ARTICLE_PURGE != 0) {
594 $disabled = "disabled=\"1\"";
451ff722 595 $checked = "checked=\"checked\"";
1395083e
AD
596 } else {
597 $disabled = "";
598 }
599
451ff722
AD
600 print "<input type='checkbox' name='$pref_name' $checked $disabled
601 dojoType='dijit.form.CheckBox' id='CB_$pref_name' value='1'>";
1395083e 602
f17cac6b 603 } else if (array_search($pref_name, array('FRESH_ARTICLE_MAX_AGE',
1395083e
AD
604 'PURGE_OLD_DAYS', 'LONG_DATE_FORMAT', 'SHORT_DATE_FORMAT')) !== false) {
605
606 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
607
608 if ($pref_name == "PURGE_OLD_DAYS" && FORCE_ARTICLE_PURGE != 0) {
609 $disabled = "disabled=\"1\"";
610 $value = FORCE_ARTICLE_PURGE;
611 } else {
612 $disabled = "";
613 }
614
615 print "<input dojoType=\"dijit.form.ValidationTextBox\"
616 required=\"1\" $regexp $disabled
617 name=\"$pref_name\" value=\"$value\">";
618
619 } else if ($pref_name == "SSL_CERT_SERIAL") {
620
621 print "<input dojoType=\"dijit.form.ValidationTextBox\"
622 id=\"SSL_CERT_SERIAL\" readonly=\"1\"
623 name=\"$pref_name\" value=\"$value\">";
624
625 $cert_serial = htmlspecialchars(get_ssl_certificate_id());
626 $has_serial = ($cert_serial) ? "false" : "true";
627
628 print " <button dojoType=\"dijit.form.Button\" disabled=\"$has_serial\"
629 onclick=\"insertSSLserial('$cert_serial')\">" .
630 __('Register') . "</button>";
631
632 print " <button dojoType=\"dijit.form.Button\"
633 onclick=\"insertSSLserial('')\">" .
634 __('Clear') . "</button>";
635
76c843a9 636 } else if ($pref_name == 'DIGEST_PREFERRED_TIME') {
61c1812f 637 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1b92f543 638 id=\"$pref_name\" regexp=\"[012]?\d:\d\d\" placeHolder=\"12:00\"
61c1812f 639 name=\"$pref_name\" value=\"$value\"><div class=\"insensitive\">".
8eba830f 640 T_sprintf("Current server time: %s (UTC)", date("H:i")) . "</div>";
1395083e
AD
641 } else {
642 $regexp = ($type_name == 'integer') ? 'regexp="^\d*$"' : '';
643
644 print "<input dojoType=\"dijit.form.ValidationTextBox\"
645 $regexp
646 name=\"$pref_name\" value=\"$value\">";
647 }
648
649 print "</td>";
650
651 print "</tr>";
652
653 $lnum++;
654 }
655
656 print "</table>";
657
451ff722
AD
658 $listed_boolean_prefs = htmlspecialchars(join(",", $listed_boolean_prefs));
659
660 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"boolean_prefs\" value=\"$listed_boolean_prefs\">";
661
1ffe3391 662 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
699daf58
AD
663 "hook_prefs_tab_section", "prefPrefsPrefsInside");
664
1395083e
AD
665 print '</div>'; # inside pane
666 print '<div dojoType="dijit.layout.ContentPane" region="bottom">';
667
668 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
669 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"saveconfig\">";
670
122e9d78
AD
671 print "<div dojoType=\"dijit.form.ComboButton\" type=\"submit\">
672 <span>".__('Save configuration')."</span>
673 <div dojoType=\"dijit.DropDownMenu\">
674 <div dojoType=\"dijit.MenuItem\"
675 onclick=\"dijit.byId('changeSettingsForm').onSubmit(null, true)\">".
676 __("Save and exit preferences")."</div>
677 </div>
678 </div>";
1395083e
AD
679
680 print "<button dojoType=\"dijit.form.Button\" onclick=\"return editProfiles()\">".
681 __('Manage profiles')."</button> ";
682
683 print "<button dojoType=\"dijit.form.Button\" onclick=\"return validatePrefsReset()\">".
684 __('Reset to defaults')."</button>";
685
f9ebb32c
AD
686 print "&nbsp;";
687
744a1b00 688 /* $checked = $_SESSION["prefs_show_advanced"] ? "checked='1'" : "";
f9ebb32c
AD
689
690 print "<input onclick='toggleAdvancedPrefs()'
691 id='prefs_show_advanced'
692 dojoType=\"dijit.form.CheckBox\"
693 $checked
694 type=\"checkbox\"></input>
695 <label for='prefs_show_advanced'>" .
744a1b00 696 __("Show additional preferences") . "</label>"; */
f9ebb32c 697
1ffe3391 698 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
699daf58
AD
699 "hook_prefs_tab_section", "prefPrefsPrefsOutside");
700
de612e7a 701 print "</form>";
1395083e
AD
702 print '</div>'; # inner pane
703 print '</div>'; # border container
de612e7a
AD
704
705 print "</div>"; #pane
706
707 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Plugins')."\">";
708
6deafe90 709 print "<p>" . __("You will need to reload Tiny Tiny RSS for plugin changes to take effect.") . "</p>";
65f85248 710
6deafe90 711 print_notice(__("Download more plugins at tt-rss.org <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/forum/viewforum.php?f=22\">forums</a> or <a target=\"_blank\" class=\"visibleLink\" href=\"http://tt-rss.org/wiki/Plugins\">wiki</a>."));
de612e7a
AD
712
713 print "<form dojoType=\"dijit.form.Form\" id=\"changePluginsForm\">";
714
715 print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
716 evt.preventDefault();
717 if (this.validate()) {
718 notify_progress('Saving data...', true);
719
720 new Ajax.Request('backend.php', {
721 parameters: dojo.objectToQuery(this.getValues()),
722 onComplete: function(transport) {
723 notify('');
724 if (confirm(__('Selected plugins have been enabled. Reload?'))) {
725 window.location.reload();
726 }
727 } });
728
729 }
730 </script>";
731
732 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-prefs\">";
733 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setplugins\">";
734
65d1e250 735 print "<table width='100%' class='prefPluginsList'>";
de612e7a
AD
736
737 print "<tr><td colspan='4'><h3>".__("System plugins")."</h3></td></tr>";
738
739 print "<tr class=\"title\">
740 <td width=\"5%\">&nbsp;</td>
741 <td width='10%'>".__('Plugin')."</td>
742 <td width=''>".__('Description')."</td>
743 <td width='5%'>".__('Version')."</td>
744 <td width='10%'>".__('Author')."</td></tr>";
745
746 $system_enabled = array_map("trim", explode(",", PLUGINS));
a42c55f0 747 $user_enabled = array_map("trim", explode(",", get_pref("_ENABLED_PLUGINS")));
de612e7a 748
6f7798b6 749 $tmppluginhost = new PluginHost();
5d9abb1e
AD
750 $tmppluginhost->load_all($tmppluginhost::KIND_ALL, $_SESSION["uid"]);
751 $tmppluginhost->load_data(true);
de612e7a
AD
752
753 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 754 $about = $plugin->about();
de612e7a 755
23be0bd3 756 if ($about[3] && strpos($name, "example") === FALSE) {
de612e7a
AD
757 if (in_array($name, $system_enabled)) {
758 $checked = "checked='1'";
759 } else {
760 $checked = "";
761 }
762
763 print "<tr>";
764
765 print "<td align='center'><input disabled='1'
766 dojoType=\"dijit.form.CheckBox\" $checked
767 type=\"checkbox\"></td>";
768
2f20dd58
AD
769 $plugin_icon = $checked ? "plugin.png" : "plugin_disabled.png";
770
06a39024 771 print "<td><label><img src='images/$plugin_icon' alt=''> $name</label></td>";
bb5e1a32
AD
772 print "<td>" . htmlspecialchars($about[1]);
773 if (@$about[4]) {
774 print " &mdash; <a target=\"_blank\" class=\"visibleLink\"
775 href=\"".htmlspecialchars($about[4])."\">".__("more info")."</a>";
776 }
777 print "</td>";
de612e7a
AD
778 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
779 print "<td>" . htmlspecialchars($about[2]) . "</td>";
780
5d9abb1e 781 if (count($tmppluginhost->get_all($plugin)) > 0) {
81c54e3d
AD
782 if (in_array($name, $system_enabled)) {
783 print "<td><a href='#' onclick=\"clearPluginData('$name')\"
784 class='visibleLink'>".__("Clear data")."</a></td>";
785 }
5d9abb1e
AD
786 }
787
de612e7a
AD
788 print "</tr>";
789
790 }
791 }
792
793 print "<tr><td colspan='4'><h3>".__("User plugins")."</h3></td></tr>";
794
795 print "<tr class=\"title\">
796 <td width=\"5%\">&nbsp;</td>
797 <td width='10%'>".__('Plugin')."</td>
798 <td width=''>".__('Description')."</td>
799 <td width='5%'>".__('Version')."</td>
800 <td width='10%'>".__('Author')."</td></tr>";
801
802
803 foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
d2a421e3 804 $about = $plugin->about();
de612e7a 805
23be0bd3 806 if (!$about[3] && strpos($name, "example") === FALSE) {
de612e7a
AD
807
808 if (in_array($name, $system_enabled)) {
809 $checked = "checked='1'";
810 $disabled = "disabled='1'";
65d1e250 811 $rowclass = '';
de612e7a
AD
812 } else if (in_array($name, $user_enabled)) {
813 $checked = "checked='1'";
814 $disabled = "";
65d1e250 815 $rowclass = "Selected";
de612e7a
AD
816 } else {
817 $checked = "";
818 $disabled = "";
65d1e250 819 $rowclass = '';
de612e7a
AD
820 }
821
65d1e250 822 print "<tr class='$rowclass'>";
de612e7a 823
2f20dd58
AD
824 $plugin_icon = $checked ? "plugin.png" : "plugin_disabled.png";
825
de612e7a
AD
826 print "<td align='center'><input id='FPCHK-$name' name='plugins[]' value='$name' onclick='toggleSelectRow2(this);'
827 dojoType=\"dijit.form.CheckBox\" $checked $disabled
828 type=\"checkbox\"></td>";
829
2f20dd58 830 print "<td><label for='FPCHK-$name'><img src='images/$plugin_icon' alt=''> $name</label></td>";
bb5e1a32
AD
831 print "<td><label for='FPCHK-$name'>" . htmlspecialchars($about[1]) . "</label>";
832 if (@$about[4]) {
833 print " &mdash; <a target=\"_blank\" class=\"visibleLink\"
834 href=\"".htmlspecialchars($about[4])."\">".__("more info")."</a>";
835 }
836 print "</td>";
837
de612e7a
AD
838 print "<td>" . htmlspecialchars(sprintf("%.2f", $about[0])) . "</td>";
839 print "<td>" . htmlspecialchars($about[2]) . "</td>";
840
5d9abb1e 841 if (count($tmppluginhost->get_all($plugin)) > 0) {
81c54e3d
AD
842 if (in_array($name, $system_enabled) || in_array($name, $user_enabled)) {
843 print "<td><a href='#' onclick=\"clearPluginData('$name')\" class='visibleLink'>".__("Clear data")."</a></td>";
844 }
5d9abb1e
AD
845 }
846
de612e7a
AD
847 print "</tr>";
848
849
850
851 }
852
853 }
854
855 print "</table>";
856
857 print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
858 __("Enable selected plugins")."</button></p>";
859
1395083e
AD
860 print "</form>";
861
862 print "</div>"; #pane
27211afe 863
1ffe3391 864 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
6065f3ad
AD
865 "hook_prefs_tab", "prefPrefs");
866
1395083e
AD
867 print "</div>"; #container
868 }
27211afe 869
f9ebb32c
AD
870 function toggleAdvanced() {
871 $_SESSION["prefs_show_advanced"] = !$_SESSION["prefs_show_advanced"];
872 }
fb70f26e
AD
873
874 function otpqrcode() {
875 require_once "lib/otphp/vendor/base32.php";
876 require_once "lib/otphp/lib/otp.php";
877 require_once "lib/otphp/lib/totp.php";
878 require_once "lib/phpqrcode/phpqrcode.php";
879
d9c85e0f 880 $result = $this->dbh->query("SELECT login,salt,otp_enabled
fb70f26e
AD
881 FROM ttrss_users
882 WHERE id = ".$_SESSION["uid"]);
883
884 $base32 = new Base32();
885
d9c85e0f
AD
886 $login = $this->dbh->fetch_result($result, 0, "login");
887 $otp_enabled = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "otp_enabled"));
fb70f26e 888
973392b9 889 if (!$otp_enabled) {
d9c85e0f 890 $secret = $base32->encode(sha1($this->dbh->fetch_result($result, 0, "salt")));
ab85ad89
AD
891 print QRcode::png("otpauth://totp/".urlencode($login).
892 "?secret=$secret&issuer=".urlencode("Tiny Tiny RSS"));
893
973392b9 894 }
fb70f26e
AD
895 }
896
3ca8af7f 897 function otpenable() {
9deca86d
AD
898 require_once "lib/otphp/vendor/base32.php";
899 require_once "lib/otphp/lib/otp.php";
900 require_once "lib/otphp/lib/totp.php";
901
902 $password = $_REQUEST["password"];
903 $otp = $_REQUEST["otp"];
3ca8af7f 904
1ffe3391 905 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
0f28f81f 906
3ca8af7f
AD
907 if ($authenticator->check_password($_SESSION["uid"], $password)) {
908
d9c85e0f 909 $result = $this->dbh->query("SELECT salt
9deca86d
AD
910 FROM ttrss_users
911 WHERE id = ".$_SESSION["uid"]);
912
913 $base32 = new Base32();
914
d9c85e0f 915 $secret = $base32->encode(sha1($this->dbh->fetch_result($result, 0, "salt")));
9deca86d
AD
916 $topt = new \OTPHP\TOTP($secret);
917
918 $otp_check = $topt->now();
919
920 if ($otp == $otp_check) {
d9c85e0f 921 $this->dbh->query("UPDATE ttrss_users SET otp_enabled = true WHERE
3ca8af7f
AD
922 id = " . $_SESSION["uid"]);
923
924 print "OK";
9deca86d
AD
925 } else {
926 print "ERROR:".__("Incorrect one time password");
3ca8af7f
AD
927 }
928 } else {
9deca86d 929 print "ERROR:".__("Incorrect password");
3ca8af7f 930 }
fb70f26e 931
3ca8af7f
AD
932 }
933
934 function otpdisable() {
d9c85e0f 935 $password = $this->dbh->escape_string($_REQUEST["password"]);
3ca8af7f 936
1ffe3391 937 $authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
3ca8af7f
AD
938
939 if ($authenticator->check_password($_SESSION["uid"], $password)) {
940
d9c85e0f 941 $this->dbh->query("UPDATE ttrss_users SET otp_enabled = false WHERE
fb70f26e 942 id = " . $_SESSION["uid"]);
3ca8af7f
AD
943
944 print "OK";
945 } else {
946 print "ERROR: ".__("Incorrect password");
fb70f26e 947 }
3ca8af7f 948
fb70f26e 949 }
de612e7a
AD
950
951 function setplugins() {
f4c02a15
AD
952 if (is_array($_REQUEST["plugins"]))
953 $plugins = join(",", $_REQUEST["plugins"]);
954 else
955 $plugins = "";
de612e7a 956
a42c55f0 957 set_pref("_ENABLED_PLUGINS", $plugins);
de612e7a 958 }
5d9abb1e
AD
959
960 function clearplugindata() {
d9c85e0f 961 $name = $this->dbh->escape_string($_REQUEST["name"]);
5d9abb1e 962
1ffe3391 963 PluginHost::getInstance()->clear_data(PluginHost::getInstance()->get_plugin($name));
5d9abb1e 964 }
00e34741
AD
965
966 function customizeCSS() {
a42c55f0 967 $value = get_pref("USER_STYLESHEET");
00e34741
AD
968
969 $value = str_replace("<br/>", "\n", $value);
970
5bbc4bb4 971 print_notice(T_sprintf("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here. <a target=\"_blank\" class=\"visibleLink\" href=\"%s\">This file</a> can be used as a baseline.", "css/tt-rss.css"));
00e34741
AD
972
973 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
974 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setpref\">";
975 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"key\" value=\"USER_STYLESHEET\">";
976
977 print "<table width='100%'><tr><td>";
978 print "<textarea dojoType=\"dijit.form.SimpleTextarea\"
979 style='font-size : 12px; width : 100%; height: 200px;'
980 placeHolder='body#ttrssMain { font-size : 14px; };'
981 name='value'>$value</textarea>";
982 print "</td></tr></table>";
983
984 print "<div class='dlgButtons'>";
985 print "<button dojoType=\"dijit.form.Button\"
986 onclick=\"dijit.byId('cssEditDlg').execute()\">".__('Save')."</button> ";
987 print "<button dojoType=\"dijit.form.Button\"
988 onclick=\"dijit.byId('cssEditDlg').hide()\">".__('Cancel')."</button>";
989 print "</div>";
990
991 }
992
9d76e754
AD
993 function editPrefProfiles() {
994 print "<div dojoType=\"dijit.Toolbar\">";
995
996 print "<div dojoType=\"dijit.form.DropDownButton\">".
997 "<span>" . __('Select')."</span>";
998 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
999 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
1000 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1001 print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
1002 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1003 print "</div></div>";
1004
1005 print "<div style=\"float : right\">";
1006
1007 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
1008 required=\"1\">
1009 <button dojoType=\"dijit.form.Button\"
1010 onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
1011 __('Create profile')."</button></div>";
1012
1013 print "</div>";
1014
d9c85e0f 1015 $result = $this->dbh->query("SELECT title,id FROM ttrss_settings_profiles
9d76e754
AD
1016 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1017
1018 print "<div class=\"prefProfileHolder\">";
1019
1020 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
1021
1022 print "<table width=\"100%\" class=\"prefFeedProfileList\"
1023 cellspacing=\"0\" id=\"prefFeedProfileList\">";
1024
1025 print "<tr class=\"placeholder\" id=\"FCATR-0\">"; #odd
1026
1027 print "<td width='5%' align='center'><input
1028 id='FCATC-0'
1029 onclick='toggleSelectRow2(this);'
1030 dojoType=\"dijit.form.CheckBox\"
1031 type=\"checkbox\"></td>";
1032
1033 if (!$_SESSION["profile"]) {
1034 $is_active = __("(active)");
1035 } else {
1036 $is_active = "";
1037 }
1038
1039 print "<td><span>" .
1040 __("Default profile") . " $is_active</span></td>";
1041
1042 print "</tr>";
1043
1044 $lnum = 1;
1045
d9c85e0f 1046 while ($line = $this->dbh->fetch_assoc($result)) {
9d76e754 1047
9d76e754
AD
1048 $profile_id = $line["id"];
1049 $this_row_id = "id=\"FCATR-$profile_id\"";
1050
1051 print "<tr class=\"placeholder\" $this_row_id>";
1052
1053 $edit_title = htmlspecialchars($line["title"]);
1054
1055 print "<td width='5%' align='center'><input
1056 onclick='toggleSelectRow2(this);'
1057 id='FCATC-$profile_id'
1058 dojoType=\"dijit.form.CheckBox\"
1059 type=\"checkbox\"></td>";
1060
1061 if ($_SESSION["profile"] == $line["id"]) {
1062 $is_active = __("(active)");
1063 } else {
1064 $is_active = "";
1065 }
1066
1067 print "<td><span dojoType=\"dijit.InlineEditBox\"
1068 width=\"300px\" autoSave=\"false\"
1069 profile-id=\"$profile_id\">" . $edit_title .
1070 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
1071 var elem = this;
1072 dojo.xhrPost({
1073 url: 'backend.php',
1074 content: {op: 'rpc', method: 'saveprofile',
1075 value: this.value,
1076 id: this.srcNodeRef.getAttribute('profile-id')},
1077 load: function(response) {
1078 elem.attr('value', response);
1079 }
1080 });
1081 </script>
1082 </span> $is_active</td>";
1083
1084 print "</tr>";
1085
1086 ++$lnum;
1087 }
1088
1089 print "</table>";
1090 print "</form>";
1091 print "</div>";
1092
1093 print "<div class='dlgButtons'>
1094 <div style='float : left'>
1095 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
1096 __('Remove selected profiles')."</button>
1097 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
1098 __('Activate profile')."</button>
1099 </div>";
1100
1101 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
1102 __('Close this window')."</button>";
1103 print "</div>";
1104
1105 }
1106
dfad9d7a
AD
1107 private function getShortDesc($pref_name) {
1108 if (isset($this->pref_help[$pref_name])) {
1109 return $this->pref_help[$pref_name][0];
1110 }
1111 return "";
1112 }
9d76e754 1113
dfad9d7a
AD
1114 private function getHelpText($pref_name) {
1115 if (isset($this->pref_help[$pref_name])) {
1116 return $this->pref_help[$pref_name][1];
1117 }
1118 return "";
1119 }
1120
1121 private function getSectionName($id) {
1122 if (isset($this->pref_sections[$id])) {
1123 return $this->pref_sections[$id];
1124 }
1125
1126 return "";
1127 }
1395083e
AD
1128}
1129?>