]> git.wh0rd.org - tt-rss.git/blame - prefs.php
Revert "exception handler: remove report to tt-rss.org"
[tt-rss.git] / prefs.php
CommitLineData
1d3a17c7 1<?php
d0c6dd29
AD
2 if (file_exists("install") && !file_exists("config.php")) {
3 header("Location: install/");
4 }
5
88e8fb3a
AD
6 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
7 get_include_path());
107d0cf3 8
d0c6dd29
AD
9 if (!file_exists("config.php")) {
10 print "<b>Fatal Error</b>: You forgot to copy
11 <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
12 exit;
13 }
14
404e2e36 15 require_once "autoload.php";
1df0f48b 16 require_once "sessions.php";
23419d11 17 require_once "functions.php";
66581886 18 require_once "sanity_check.php";
da497bab 19 require_once "version.php";
ab49d368
AD
20 require_once "config.php";
21 require_once "db-prefs.php";
22
6322ac79 23 if (!init_plugins()) return;
324944f3 24
6322ac79 25 login_sequence();
53515ff1 26
03208748 27 header('Content-Type: text/html; charset=utf-8');
ab49d368 28?>
da497bab 29<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3f59e8cd 30 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
007bda35
AD
31<html>
32<head>
99534a3d 33 <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
b5d4716a 34
cdbcb277
AD
35 <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
36 <?php echo stylesheet_tag("css/layout.css"); ?>
ab49d368 37
5d40efc9 38 <?php if ($_SESSION["uid"]) {
6322ac79 39 $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
5bbc4bb4 40 if ($theme && file_exists("themes/$theme")) {
cdbcb277 41 echo stylesheet_tag("themes/$theme");
5bbc4bb4 42 } else {
cdbcb277 43 echo stylesheet_tag("themes/default.css");
5d40efc9
AD
44 }
45 }
46 ?>
47
6322ac79 48 <?php print_user_stylesheet() ?>
da497bab 49
74d5c8fa 50 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
efc7243c 51 <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
c0266b88 52
b5d4716a
AD
53 <?php
54 foreach (array("lib/prototype.js",
6214a076 55 "lib/scriptaculous/scriptaculous.js?load=effects,controls",
b5d4716a 56 "lib/dojo/dojo.js",
b5d4716a 57 "lib/dojo/tt-rss-layer.js",
b5d4716a
AD
58 "errors.php?mode=js") as $jsfile) {
59
cdbcb277 60 echo javascript_tag($jsfile);
a7750ac6 61
b5d4716a 62 } ?>
14f69488 63
6065f3ad 64 <script type="text/javascript">
010eb9c1 65 require({cache:{}});
6065f3ad 66 <?php
36840743 67 require_once 'lib/jshrink/Minifier.php';
6065f3ad 68
1ffe3391 69 foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
6065f3ad 70 if (method_exists($p, "get_prefs_js")) {
107997e6 71 echo JShrink\Minifier::minify($p->get_prefs_js());
6065f3ad
AD
72 }
73 }
74
010eb9c1 75 print get_minified_js(array("../lib/CheckBoxTree","functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
c670a80d 76
bcbb2ec7 77 init_js_translations();
6065f3ad
AD
78 ?>
79 </script>
b1895692 80
74d5c8fa 81 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
da497bab 82
362698ad 83 <script type="text/javascript">
44258fa9
AD
84 Event.observe(window, 'load', function() {
85 init();
86 });
362698ad 87 </script>
44258fa9 88
007bda35
AD
89</head>
90
e331188f
AD
91<body id="ttrssPrefs" class="claro">
92
95437e9e 93<div id="notify" class="notify" style="display : none"></div>
d62796de
AD
94<div id="cmdline" style="display : none"></div>
95
08827aaf
AD
96<div id="overlay">
97 <div id="overlay_inner">
fcc36744
AD
98 <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
99 <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
100 progress="0" maximum="100">
08827aaf 101 </div>
5a941e7e 102 <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
08827aaf 103 </div>
da497bab 104</div>
08827aaf 105
d62796de 106<div id="header" dojoType="dijit.layout.ContentPane" region="top">
b8cb4d08 107 <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
da497bab 108 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
3f59e8cd
AD
109</div>
110
da497bab
AD
111<div id="main" dojoType="dijit.layout.BorderContainer">
112
d62796de 113<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
da497bab 114<div id="genConfigTab" dojoType="dijit.layout.ContentPane"
d62796de
AD
115 href="backend.php?op=pref-prefs"
116 title="<?php echo __('Preferences') ?>"></div>
da497bab 117<div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
d62796de
AD
118 href="backend.php?op=pref-feeds"
119 title="<?php echo __('Feeds') ?>"></div>
da497bab 120<div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
d62796de
AD
121 href="backend.php?op=pref-filters"
122 title="<?php echo __('Filters') ?>"></div>
da497bab 123<div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
d62796de
AD
124 href="backend.php?op=pref-labels"
125 title="<?php echo __('Labels') ?>"></div>
126<?php if ($_SESSION["access_level"] >= 10) { ?>
da497bab 127 <div id="userConfigTab" dojoType="dijit.layout.ContentPane"
d62796de
AD
128 href="backend.php?op=pref-users"
129 title="<?php echo __('Users') ?>"></div>
2cbdc95b
AD
130 <div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
131 href="backend.php?op=pref-system"
132 title="<?php echo __('System') ?>"></div>
207d8118 133<?php } ?>
6cbe53c9 134<?php
1ffe3391 135 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
6cbe53c9
AD
136 "hook_prefs_tabs", false);
137?>
1f8274d3 138</div>
3f59e8cd 139
d62796de 140<div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
da497bab 141 <a class="insensitive" target="_blank" href="http://tt-rss.org/">
9e662b4d
AD
142 Tiny Tiny RSS</a>
143 <?php if (!defined('HIDE_VERSION')) { ?>
144 v<?php echo VERSION ?>
145 <?php } ?>
146 &copy; 2005-<?php echo date('Y') ?>
da497bab
AD
147 <a class="insensitive" target="_blank"
148 href="http://fakecake.org/">Andrew Dolgov</a>
d62796de
AD
149</div> <!-- footer -->
150
23c2a4e7
AD
151</div>
152
007bda35
AD
153</body>
154</html>