tinytinyrss/prefs.php

175 lines
4.8 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;
}
2013-04-17 13:36:34 +02:00
require_once "autoload.php";
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";
2013-04-17 14:23:15 +02:00
if (!init_plugins()) return;
2013-04-17 14:23:15 +02:00
login_sequence();
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>
<meta name="viewport" content="initial-scale=1,width=device-width" />
<script type="text/javascript">
var __ttrss_version = "<?php echo VERSION ?>"
</script>
<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
<?php if ($_SESSION["uid"]) {
2013-04-17 14:23:15 +02:00
$theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
if ($theme && theme_valid("$theme")) {
echo stylesheet_tag(get_theme_path($theme));
} else {
2017-12-03 11:10:25 +01:00
echo stylesheet_tag("css/default.css");
}
}
?>
2013-04-17 14:23:15 +02:00
<?php print_user_stylesheet() ?>
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
2016-08-10 11:22:30 +02:00
<script>
dojoConfig = {
async: true,
2017-01-22 11:43:32 +01:00
cacheBust: new Date(),
2016-08-10 11:22:30 +02:00
packages: [
{ name: "lib", location: "../" },
{ name: "fox", location: "../../js" },
]
};
</script>
<?php
foreach (array("lib/prototype.js",
"lib/scriptaculous/scriptaculous.js?load=effects,controls",
"lib/dojo/dojo.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">
require({cache:{}});
2012-12-23 13:15:34 +01:00
<?php
2013-07-31 13:05:05 +02:00
require_once '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")) {
2016-08-10 11:22:30 +02:00
echo "try {";
2013-03-18 07:45:04 +01:00
echo JShrink\Minifier::minify($p->get_prefs_js());
2016-08-10 11:22:30 +02:00
echo "} catch (e) {
console.warn('failed to initialize plugin JS: $n');
console.warn(e);
}";
2012-12-23 13:15:34 +01:00
}
}
2017-12-05 05:09:01 +01:00
print get_minified_js(["functions.js", "prefs.js"]);
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>
2017-12-03 10:49:40 +01:00
<body class="claro ttrss_main ttrss_prefs">
2011-12-10 18:26:59 +01:00
<div id="notify" class="notify"></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
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);
?>
</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>
2005-08-22 03:17:12 +02:00
</body>
</html>