tinytinyrss/prefs.php

167 lines
5.3 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 if ($_SESSION["uid"]) {
2018-08-24 16:23:46 +02:00
$theme = get_pref("USER_CSS_THEME", false, false);
if ($theme && theme_exists("$theme")) {
2018-12-09 19:17:50 +01:00
echo stylesheet_tag(get_theme_path($theme), 'theme_css');
} else {
2018-12-09 19:17:50 +01:00
echo stylesheet_tag("css/default.css", 'theme_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,
cacheBust: "<?php echo get_scripts_timestamp(); ?>",
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",
"js/common.js",
"js/prefs.js",
"errors.php?mode=js") as $jsfile) {
echo javascript_tag($jsfile);
} ?>
2006-05-20 13:16:16 +02:00
<script type="text/javascript">
require({cache:{}});
</script>
2018-03-08 16:41:03 +01:00
<script type="text/javascript">
<?php
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
}
}
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"/>
2005-08-22 03:17:12 +02:00
</head>
2018-12-04 14:53:01 +01:00
<body class="flat 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">
<?php echo __("Loading, please wait...") ?>
2010-11-19 14:08:02 +01:00
<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
<div id="header">
2012-12-28 12:42:02 +01:00
<!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
<a href="#" onclick="document.location.href = 'index.php'"><?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">
<div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
<div id="genConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-prefs"
2018-12-06 05:54:28 +01:00
title="<i class='material-icons'>settings</i> <?php echo __('Preferences') ?>"></div>
<div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-feeds"
2018-12-06 05:54:28 +01:00
title="<i class='material-icons'>rss_feed</i> <?php echo __('Feeds') ?>"></div>
<div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
style="padding : 0px"
href="backend.php?op=pref-filters"
2018-12-06 05:54:28 +01:00
title="<i class='material-icons'>filter_list1</i> <?php echo __('Filters') ?>"></div>
<div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
style="padding : 0px"
href="backend.php?op=pref-labels"
2018-12-06 05:54:28 +01:00
title="<i class='material-icons'>label_outline1</i> <?php echo __('Labels') ?>"></div>
<?php if ($_SESSION["access_level"] >= 10) { ?>
<div id="userConfigTab" dojoType="dijit.layout.ContentPane"
style="padding : 0px"
href="backend.php?op=pref-users"
2018-12-06 05:54:28 +01:00
title="<i class='material-icons'>person</i> <?php echo __('Users') ?>"></div>
<div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
href="backend.php?op=pref-system"
2018-12-06 05:54:28 +01:00
title="<i class='material-icons'>info_outline</i> <?php echo __('System') ?>"></div>
<?php } ?>
<?php
PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
"hook_prefs_tabs", false);
?>
</div>
<div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
<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') ?>
<a class="insensitive" target="_blank"
href="http://fakecake.org/">Andrew Dolgov</a>
</div> <!-- footer -->
2006-10-01 06:40:40 +02:00
</div>
2005-08-22 03:17:12 +02:00
</body>
</html>