tinytinyrss/prefs.php

160 lines
4.6 KiB
PHP
Raw Normal View History

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/");
}
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;
}
2007-03-02 12:05:17 +01:00
require_once "sessions.php";
require_once "functions.php";
require_once "sanity_check.php";
2011-04-18 14:29:10 +02:00
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
2011-04-18 14:29:10 +02:00
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
2005-11-17 19:29:13 +01:00
2013-04-17 12:23:35 +02:00
if (!init_plugins($link)) return;
login_sequence($link);
2006-03-30 08:43:35 +02:00
header('Content-Type: text/html; charset=utf-8');
?>
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>
<title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
<?php echo stylesheet_tag("tt-rss.css"); ?>
<?php echo stylesheet_tag("prefs.css"); ?>
<?php if ($_SESSION["uid"]) {
$theme = get_pref($link, "USER_CSS_THEME", $_SESSION["uid"], false);
if ($theme) {
echo stylesheet_tag("themes/$theme");
}
}
?>
2010-11-24 17:23:24 +01:00
<?php print_user_stylesheet($link) ?>
2011-04-18 14:29:10 +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
<?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",
"lib/dojo/tt-rss-layer.js",
"errors.php?mode=js") as $jsfile) {
echo javascript_tag($jsfile);
} ?>
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
global $pluginhost;
foreach ($pluginhost->get_plugins() as $n => $p) {
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
init_js_translations();
2012-12-23 13:15:34 +01:00
?>
</script>
2005-11-17 08:10:31 +01: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">
Event.observe(window, 'load', function() {
init();
});
2006-02-26 08:21:22 +01:00
</script>
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>
<?php } ?>
2012-12-23 20:36:07 +01:00
<?php
$pluginhost->run_hooks($pluginhost::HOOK_PREFS_TABS,
"hook_prefs_tabs", false);
?>
</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/">
Tiny Tiny RSS</a>
<?php if (!defined('HIDE_VERSION')) { ?>
v<?php echo VERSION ?>
<?php } ?>
&copy; 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>
2006-08-19 09:04:45 +02:00
<?php db_close($link); ?>
2005-08-22 03:17:12 +02:00
</body>
</html>