]> git.wh0rd.org - tt-rss.git/blob - prefs.php
switch pref tabs back to old-style due to compatibility issues
[tt-rss.git] / prefs.php
1 <?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
4 require_once "functions.php";
5 require_once "sessions.php";
6 require_once "sanity_check.php";
7 require_once "version.php";
8 require_once "config.php";
9 require_once "db-prefs.php";
10
11 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
12
13 login_sequence($link);
14
15 $dt_add = get_script_dt_add();
16
17 no_cache_incantation();
18
19 ?>
20 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
21 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
22 <html>
23 <head>
24 <title>Tiny Tiny RSS : Preferences</title>
25 <link rel="stylesheet" href="tt-rss.css" type="text/css">
26
27 <?php $user_theme = $_SESSION["theme"];
28 if ($user_theme) { ?>
29 <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
30 <?php } ?>
31
32 <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
33
34 <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
35 <?php if ($user_css_url) { ?>
36 <link type="text/css" href="<?php echo $user_css_url ?>"/>
37 <?php } ?>
38
39 <link rel="shortcut icon" type="image/png" href="images/favicon.png">
40
41 <script type="text/javascript" src="prototype.js"></script>
42 <script type="text/javascript" src="localized_js.php?<?php echo $dt_add ?>"></script>
43
44 <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
45 <script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
46
47 <!--[if lt IE 7]>
48 <script type="text/javascript" src="pngfix.js"></script>
49 <link rel="stylesheet" type="text/css" href="ie6.css">
50 <![endif]-->
51
52 <!--[if IE 7]>
53 <link rel="stylesheet" type="text/css" href="ie7.css">
54 <![endif]-->
55
56 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
57
58 <script type="text/javascript">
59 if (navigator.userAgent.match("Opera")) {
60 document.write('<link rel="stylesheet" type="text/css" href="opera.css">');
61 }
62 if (navigator.userAgent.match("Gecko") && !navigator.userAgent.match("KHTML")) {
63 document.write('<link rel="stylesheet" type="text/css" href="gecko.css">');
64 }
65 </script>
66 </head>
67
68 <body>
69
70 <div id="piggie">&nbsp;</div>
71
72 <script type="text/javascript">
73 if (document.addEventListener) {
74 document.addEventListener("DOMContentLoaded", init, null);
75 }
76 window.onload = init;
77 </script>
78
79 <ul id="debug_output"></ul>
80
81 <div id="fatal_error"><div id="fatal_error_inner">
82 <h1>Fatal Error</h1>
83 <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
84 </div></div>
85
86 <div id="prefHeader">
87 <?php if (!SINGLE_USER_MODE) { ?>
88 <div style="float : right">
89 <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
90 (<a href="logout.php"><?= __('Logout') ?></a>)
91 </div>
92 <?php } ?>
93 <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS"/>
94 </div>
95
96 <div id="prefTabs">
97 <div class="return">
98 <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
99 </div>
100
101 <div class="firstTab">&nbsp;</div>
102
103 <div id="genConfigTab" class="prefsTab"
104 onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
105 <div id="feedConfigTab" class="prefsTab"
106 onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
107 <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
108 <div id="feedBrowserTab" class="prefsTab"
109 onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
110 <?php } ?>
111 <div id="filterConfigTab" class="prefsTab"
112 onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
113 <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
114 <div id="labelConfigTab" class="prefsTab"
115 onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
116 <?php } ?>
117 <?php if ($_SESSION["access_level"] >= 10) { ?>
118 <div id="userConfigTab" class="prefsTab"
119 onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
120 <?php } ?>
121 </div>
122
123 <div id="prefContent">
124 <p><?php echo __('Loading, please wait...') ?></p>
125 <noscript>
126 <div class="error">
127 <?php echo __("Your browser doesn't support Javascript, which is required
128 for this application to function properly. Please check your
129 browser settings.") ?></div>
130 </noscript>
131 </div>
132
133 <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
134 <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
135
136 <div id="dialog_overlay"> </div>
137
138 <div id="prefFooter">
139 <?php if (defined('_DEBUG_USER_SWITCH')) { ?>
140 <select id="userSwitch" onchange="userSwitch()">
141 <?php
142 foreach (array('admin', 'fox', 'test') as $u) {
143 $op_sel = ($u == $_SESSION["name"]) ? "selected" : "";
144 print "<option $op_sel>$u</option>";
145 }
146 ?>
147 </select>
148 <?php } ?>
149 <a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2007 <a href="http://bah.org.ru/">Andrew Dolgov</a>
150 </div>
151
152 <?php db_close($link); ?>
153
154 <script type="text/javascript">
155 /* for IE */
156 function statechange() {
157 if (document.readyState == "interactive") init();
158 }
159
160 if (document.readyState) {
161 if (document.readyState == "interactive" || document.readyState == "complete") {
162 init();
163 } else {
164 document.onreadystatechange = statechange;
165 }
166 }
167 </script>
168
169 </body>
170 </html>