]> git.wh0rd.org - tt-rss.git/blob - prefs.php
db updates, remove init_connection()
[tt-rss.git] / prefs.php
1 <?php
2 if (file_exists("install") && !file_exists("config.php")) {
3 header("Location: install/");
4 }
5
6 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
7 get_include_path());
8
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
15 require_once "sessions.php";
16 require_once "functions.php";
17 require_once "sanity_check.php";
18 require_once "version.php";
19 require_once "config.php";
20 require_once "db-prefs.php";
21
22 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
23
24 if (!init_plugins($link)) return;
25
26 login_sequence($link);
27
28 header('Content-Type: text/html; charset=utf-8');
29 ?>
30 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
31 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
32 <html>
33 <head>
34 <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
35
36 <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
37 <?php echo stylesheet_tag("tt-rss.css"); ?>
38 <?php echo stylesheet_tag("prefs.css"); ?>
39
40 <?php if ($_SESSION["uid"]) {
41 $theme = get_pref($link, "USER_CSS_THEME", $_SESSION["uid"], false);
42 if ($theme) {
43 echo stylesheet_tag("themes/$theme");
44 }
45 }
46 ?>
47
48 <?php print_user_stylesheet($link) ?>
49
50 <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
51 <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
52
53 <?php
54 foreach (array("lib/prototype.js",
55 "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
56 "lib/dojo/dojo.js",
57 "lib/dijit/dijit.js",
58 "lib/CheckBoxTree.js",
59 "lib/dojo/tt-rss-layer.js",
60 "errors.php?mode=js") as $jsfile) {
61
62 echo javascript_tag($jsfile);
63
64 } ?>
65
66 <script type="text/javascript">
67 <?php
68 require 'lib/jshrink/Minifier.php';
69
70 global $pluginhost;
71
72 foreach ($pluginhost->get_plugins() as $n => $p) {
73 if (method_exists($p, "get_prefs_js")) {
74 echo JShrink\Minifier::minify($p->get_prefs_js());
75 }
76 }
77
78 print get_minified_js(array("functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
79
80 init_js_translations();
81 ?>
82 </script>
83
84 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
85
86 <script type="text/javascript">
87 Event.observe(window, 'load', function() {
88 init();
89 });
90 </script>
91
92 </head>
93
94 <body id="ttrssPrefs" class="claro">
95
96 <div id="notify" class="notify" style="display : none"></div>
97 <div id="cmdline" style="display : none"></div>
98
99 <div id="overlay">
100 <div id="overlay_inner">
101 <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
102 <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
103 progress="0" maximum="100">
104 </div>
105 <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
106 </div>
107 </div>
108
109 <div id="header" dojoType="dijit.layout.ContentPane" region="top">
110 <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
111 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
112 </div>
113
114 <div id="main" dojoType="dijit.layout.BorderContainer">
115
116 <div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
117 <div id="genConfigTab" dojoType="dijit.layout.ContentPane"
118 href="backend.php?op=pref-prefs"
119 title="<?php echo __('Preferences') ?>"></div>
120 <div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
121 href="backend.php?op=pref-feeds"
122 title="<?php echo __('Feeds') ?>"></div>
123 <div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
124 href="backend.php?op=pref-filters"
125 title="<?php echo __('Filters') ?>"></div>
126 <div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
127 href="backend.php?op=pref-labels"
128 title="<?php echo __('Labels') ?>"></div>
129 <?php if ($_SESSION["access_level"] >= 10) { ?>
130 <div id="userConfigTab" dojoType="dijit.layout.ContentPane"
131 href="backend.php?op=pref-users"
132 title="<?php echo __('Users') ?>"></div>
133 <div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
134 href="backend.php?op=pref-system"
135 title="<?php echo __('System') ?>"></div>
136 <?php } ?>
137 <?php
138 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TABS,
139 "hook_prefs_tabs", false);
140 ?>
141 </div>
142
143 <div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
144 <a class="insensitive" target="_blank" href="http://tt-rss.org/">
145 Tiny Tiny RSS</a>
146 <?php if (!defined('HIDE_VERSION')) { ?>
147 v<?php echo VERSION ?>
148 <?php } ?>
149 &copy; 2005-<?php echo date('Y') ?>
150 <a class="insensitive" target="_blank"
151 href="http://fakecake.org/">Andrew Dolgov</a>
152 </div> <!-- footer -->
153
154 </div>
155
156 <?php db_close($link); ?>
157
158 </body>
159 </html>