prefs.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. if (file_exists("install") && !file_exists("config.php")) {
  3. header("Location: install/");
  4. }
  5. set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
  6. get_include_path());
  7. if (!file_exists("config.php")) {
  8. print "<b>Fatal Error</b>: You forgot to copy
  9. <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
  10. exit;
  11. }
  12. require_once "autoload.php";
  13. require_once "sessions.php";
  14. require_once "functions.php";
  15. require_once "sanity_check.php";
  16. require_once "version.php";
  17. require_once "config.php";
  18. require_once "db-prefs.php";
  19. if (!init_plugins()) return;
  20. login_sequence();
  21. header('Content-Type: text/html; charset=utf-8');
  22. ?>
  23. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  24. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  25. <html>
  26. <head>
  27. <title>Tiny Tiny RSS : <?php echo __("Preferences") ?></title>
  28. <script type="text/javascript">
  29. var __ttrss_version = "<?php echo VERSION ?>"
  30. </script>
  31. <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
  32. <?php echo stylesheet_tag("css/layout.css"); ?>
  33. <?php if ($_SESSION["uid"]) {
  34. $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
  35. if ($theme && theme_valid("$theme")) {
  36. echo stylesheet_tag(get_theme_path($theme));
  37. } else {
  38. echo stylesheet_tag("themes/default.css");
  39. }
  40. }
  41. ?>
  42. <?php print_user_stylesheet() ?>
  43. <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
  44. <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
  45. <?php
  46. foreach (array("lib/prototype.js",
  47. "lib/scriptaculous/scriptaculous.js?load=effects,controls",
  48. "lib/dojo/dojo.js",
  49. "lib/dojo/tt-rss-layer.js",
  50. "errors.php?mode=js") as $jsfile) {
  51. echo javascript_tag($jsfile);
  52. } ?>
  53. <script type="text/javascript">
  54. require({cache:{}});
  55. <?php
  56. require_once 'lib/jshrink/Minifier.php';
  57. foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
  58. if (method_exists($p, "get_prefs_js")) {
  59. echo JShrink\Minifier::minify($p->get_prefs_js());
  60. }
  61. }
  62. print get_minified_js(array("../lib/CheckBoxTree","functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
  63. init_js_translations();
  64. ?>
  65. </script>
  66. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  67. <script type="text/javascript">
  68. Event.observe(window, 'load', function() {
  69. init();
  70. });
  71. </script>
  72. </head>
  73. <body id="ttrssPrefs" class="claro">
  74. <div id="notify" class="notify"></div>
  75. <div id="cmdline" style="display : none"></div>
  76. <div id="overlay">
  77. <div id="overlay_inner">
  78. <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
  79. <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
  80. progress="0" maximum="100">
  81. </div>
  82. <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
  83. </div>
  84. </div>
  85. <div id="header" dojoType="dijit.layout.ContentPane" region="top">
  86. <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
  87. <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
  88. </div>
  89. <div id="main" dojoType="dijit.layout.BorderContainer">
  90. <div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
  91. <div id="genConfigTab" dojoType="dijit.layout.ContentPane"
  92. href="backend.php?op=pref-prefs"
  93. title="<?php echo __('Preferences') ?>"></div>
  94. <div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
  95. href="backend.php?op=pref-feeds"
  96. title="<?php echo __('Feeds') ?>"></div>
  97. <div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
  98. href="backend.php?op=pref-filters"
  99. title="<?php echo __('Filters') ?>"></div>
  100. <div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
  101. href="backend.php?op=pref-labels"
  102. title="<?php echo __('Labels') ?>"></div>
  103. <?php if ($_SESSION["access_level"] >= 10) { ?>
  104. <div id="userConfigTab" dojoType="dijit.layout.ContentPane"
  105. href="backend.php?op=pref-users"
  106. title="<?php echo __('Users') ?>"></div>
  107. <div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
  108. href="backend.php?op=pref-system"
  109. title="<?php echo __('System') ?>"></div>
  110. <?php } ?>
  111. <?php
  112. PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
  113. "hook_prefs_tabs", false);
  114. ?>
  115. </div>
  116. <div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
  117. <a class="insensitive" target="_blank" href="http://tt-rss.org/">
  118. Tiny Tiny RSS</a>
  119. <?php if (!defined('HIDE_VERSION')) { ?>
  120. v<?php echo VERSION ?>
  121. <?php } ?>
  122. &copy; 2005-<?php echo date('Y') ?>
  123. <a class="insensitive" target="_blank"
  124. href="http://fakecake.org/">Andrew Dolgov</a>
  125. </div> <!-- footer -->
  126. </div>
  127. </body>
  128. </html>