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