2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2013-03-26 19:38:05 +01:00
|
|
|
if (file_exists("install") && !file_exists("config.php")) {
|
|
|
|
header("Location: install/");
|
|
|
|
}
|
|
|
|
|
2012-12-09 10:41:22 +01:00
|
|
|
set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
|
|
|
|
get_include_path());
|
2011-12-11 20:59:25 +01:00
|
|
|
|
2013-03-26 19:38:05 +01:00
|
|
|
if (!file_exists("config.php")) {
|
|
|
|
print "<b>Fatal Error</b>: You forgot to copy
|
|
|
|
<b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2013-04-17 13:36:34 +02:00
|
|
|
require_once "autoload.php";
|
2007-03-02 12:05:17 +01:00
|
|
|
require_once "sessions.php";
|
2013-01-04 22:28:07 +01:00
|
|
|
require_once "functions.php";
|
2005-11-23 18:20:17 +01:00
|
|
|
require_once "sanity_check.php";
|
2011-04-18 14:29:10 +02:00
|
|
|
require_once "version.php";
|
2005-11-17 08:25:29 +01:00
|
|
|
require_once "config.php";
|
|
|
|
require_once "db-prefs.php";
|
|
|
|
|
2013-04-17 14:23:15 +02:00
|
|
|
if (!init_plugins()) return;
|
2010-11-07 16:14:48 +01:00
|
|
|
|
2013-04-17 14:23:15 +02:00
|
|
|
login_sequence();
|
2006-03-30 08:43:35 +02:00
|
|
|
|
2008-11-14 13:04:37 +01:00
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
2005-11-17 08:25:29 +01:00
|
|
|
?>
|
2011-04-18 14:29:10 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2006-09-30 08:49:50 +02:00
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2005-08-22 03:17:12 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-03-23 06:51:30 +01:00
|
|
|
<title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
|
2013-03-20 17:33:46 +01:00
|
|
|
|
2013-05-07 09:35:10 +02:00
|
|
|
<?php stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
|
|
|
|
<?php stylesheet_tag("tt-rss.css"); ?>
|
|
|
|
<?php stylesheet_tag("prefs.css"); ?>
|
2005-11-17 08:25:29 +01:00
|
|
|
|
2013-03-28 18:04:29 +01:00
|
|
|
<?php if ($_SESSION["uid"]) {
|
2013-04-17 14:23:15 +02:00
|
|
|
$theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
|
2013-03-28 18:04:29 +01:00
|
|
|
if ($theme) {
|
2013-05-07 09:35:10 +02:00
|
|
|
stylesheet_tag("themes/$theme");
|
2013-03-28 18:04:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2013-04-17 14:23:15 +02:00
|
|
|
<?php print_user_stylesheet() ?>
|
2011-04-18 14:29:10 +02:00
|
|
|
|
2008-09-21 15:39:02 +02:00
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
|
2013-03-21 16:09:13 +01:00
|
|
|
<link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
|
2006-09-11 08:49:46 +02:00
|
|
|
|
2013-03-20 17:33:46 +01:00
|
|
|
<?php
|
|
|
|
foreach (array("lib/prototype.js",
|
|
|
|
"lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
|
|
|
|
"lib/dojo/dojo.js",
|
|
|
|
"lib/dijit/dijit.js",
|
2013-04-01 14:19:46 +02:00
|
|
|
"lib/CheckBoxTree.js",
|
2013-03-20 17:33:46 +01:00
|
|
|
"lib/dojo/tt-rss-layer.js",
|
|
|
|
"errors.php?mode=js") as $jsfile) {
|
|
|
|
|
2013-05-07 09:35:10 +02:00
|
|
|
javascript_tag($jsfile);
|
2007-09-05 10:02:02 +02:00
|
|
|
|
2013-03-20 17:33:46 +01:00
|
|
|
} ?>
|
2006-05-20 13:16:16 +02:00
|
|
|
|
2012-12-23 13:15:34 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
<?php
|
2013-03-18 07:45:04 +01:00
|
|
|
require 'lib/jshrink/Minifier.php';
|
2012-12-23 13:15:34 +01:00
|
|
|
|
2013-04-18 10:27:34 +02:00
|
|
|
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
|
2012-12-23 13:15:34 +01:00
|
|
|
if (method_exists($p, "get_prefs_js")) {
|
2013-03-18 07:45:04 +01:00
|
|
|
echo JShrink\Minifier::minify($p->get_prefs_js());
|
2012-12-23 13:15:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-01 14:19:46 +02:00
|
|
|
print get_minified_js(array("functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
|
2013-03-18 08:00:44 +01:00
|
|
|
|
2013-03-25 09:45:27 +01:00
|
|
|
init_js_translations();
|
2012-12-23 13:15:34 +01:00
|
|
|
?>
|
|
|
|
</script>
|
2005-11-17 08:10:31 +01:00
|
|
|
|
2008-09-21 15:39:02 +02:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
2011-04-18 14:29:10 +02:00
|
|
|
|
2006-02-26 08:21:22 +01:00
|
|
|
<script type="text/javascript">
|
2009-12-24 10:20:01 +01:00
|
|
|
Event.observe(window, 'load', function() {
|
|
|
|
init();
|
|
|
|
});
|
2006-02-26 08:21:22 +01:00
|
|
|
</script>
|
2009-12-24 10:20:01 +01:00
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</head>
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
<body id="ttrssPrefs" class="claro">
|
|
|
|
|
2013-04-17 08:50:46 +02:00
|
|
|
<div id="notify" class="notify" style="display : none"></div>
|
2010-11-16 13:56:48 +01:00
|
|
|
<div id="cmdline" style="display : none"></div>
|
|
|
|
|
2008-05-19 14:00:35 +02:00
|
|
|
<div id="overlay">
|
|
|
|
<div id="overlay_inner">
|
2010-11-19 14:08:02 +01:00
|
|
|
<div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
|
|
|
|
<div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
|
|
|
|
progress="0" maximum="100">
|
2008-05-19 14:00:35 +02:00
|
|
|
</div>
|
2010-11-29 10:18:56 +01:00
|
|
|
<noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
|
2008-05-19 14:00:35 +02:00
|
|
|
</div>
|
2011-04-18 14:29:10 +02:00
|
|
|
</div>
|
2008-05-19 14:00:35 +02:00
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div id="header" dojoType="dijit.layout.ContentPane" region="top">
|
2012-12-28 12:42:02 +01:00
|
|
|
<!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
|
2011-04-18 14:29:10 +02:00
|
|
|
<a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
|
2006-09-30 08:49:50 +02:00
|
|
|
</div>
|
|
|
|
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="main" dojoType="dijit.layout.BorderContainer">
|
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="genConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-prefs"
|
|
|
|
title="<?php echo __('Preferences') ?>"></div>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-feeds"
|
|
|
|
title="<?php echo __('Feeds') ?>"></div>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-filters"
|
|
|
|
title="<?php echo __('Filters') ?>"></div>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-labels"
|
|
|
|
title="<?php echo __('Labels') ?>"></div>
|
|
|
|
<?php if ($_SESSION["access_level"] >= 10) { ?>
|
2011-04-18 14:29:10 +02:00
|
|
|
<div id="userConfigTab" dojoType="dijit.layout.ContentPane"
|
2010-11-16 13:56:48 +01:00
|
|
|
href="backend.php?op=pref-users"
|
|
|
|
title="<?php echo __('Users') ?>"></div>
|
2013-04-17 06:42:39 +02:00
|
|
|
<div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
|
|
|
|
href="backend.php?op=pref-system"
|
|
|
|
title="<?php echo __('System') ?>"></div>
|
2011-04-21 13:39:27 +02:00
|
|
|
<?php } ?>
|
2012-12-23 20:36:07 +01:00
|
|
|
<?php
|
2013-04-18 10:27:34 +02:00
|
|
|
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
|
2012-12-23 20:36:07 +01:00
|
|
|
"hook_prefs_tabs", false);
|
|
|
|
?>
|
2007-05-17 08:33:52 +02:00
|
|
|
</div>
|
2006-09-30 08:49:50 +02:00
|
|
|
|
2010-11-16 13:56:48 +01:00
|
|
|
<div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
|
2011-04-18 14:29:10 +02:00
|
|
|
<a class="insensitive" target="_blank" href="http://tt-rss.org/">
|
2013-03-29 16:46:29 +01:00
|
|
|
Tiny Tiny RSS</a>
|
|
|
|
<?php if (!defined('HIDE_VERSION')) { ?>
|
|
|
|
v<?php echo VERSION ?>
|
|
|
|
<?php } ?>
|
|
|
|
© 2005-<?php echo date('Y') ?>
|
2011-04-18 14:29:10 +02:00
|
|
|
<a class="insensitive" target="_blank"
|
|
|
|
href="http://fakecake.org/">Andrew Dolgov</a>
|
2010-11-16 13:56:48 +01:00
|
|
|
</div> <!-- footer -->
|
|
|
|
|
2006-10-01 06:40:40 +02:00
|
|
|
</div>
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
</body>
|
|
|
|
</html>
|