prefs.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
  29. <?php echo stylesheet_tag("tt-rss.css"); ?>
  30. <?php echo stylesheet_tag("prefs.css"); ?>
  31. <?php if ($_SESSION["uid"]) {
  32. $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
  33. if ($theme) {
  34. echo stylesheet_tag("themes/$theme");
  35. }
  36. }
  37. ?>
  38. <?php print_user_stylesheet() ?>
  39. <link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
  40. <link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />
  41. <?php
  42. foreach (array("lib/prototype.js",
  43. "lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls",
  44. "lib/dojo/dojo.js",
  45. "lib/dijit/dijit.js",
  46. "lib/CheckBoxTree.js",
  47. "lib/dojo/tt-rss-layer.js",
  48. "errors.php?mode=js") as $jsfile) {
  49. echo javascript_tag($jsfile);
  50. } ?>
  51. <script type="text/javascript">
  52. <?php
  53. require 'lib/jshrink/Minifier.php';
  54. global $pluginhost;
  55. foreach ($pluginhost->get_plugins() as $n => $p) {
  56. if (method_exists($p, "get_prefs_js")) {
  57. echo JShrink\Minifier::minify($p->get_prefs_js());
  58. }
  59. }
  60. print get_minified_js(array("functions", "deprecated", "prefs", "PrefFeedTree", "PrefFilterTree", "PrefLabelTree"));
  61. init_js_translations();
  62. ?>
  63. </script>
  64. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  65. <script type="text/javascript">
  66. Event.observe(window, 'load', function() {
  67. init();
  68. });
  69. </script>
  70. </head>
  71. <body id="ttrssPrefs" class="claro">
  72. <div id="notify" class="notify" style="display : none"></div>
  73. <div id="cmdline" style="display : none"></div>
  74. <div id="overlay">
  75. <div id="overlay_inner">
  76. <div class="insensitive"><?php echo __("Loading, please wait...") ?></div>
  77. <div dojoType="dijit.ProgressBar" places="0" style="width : 300px" id="loading_bar"
  78. progress="0" maximum="100">
  79. </div>
  80. <noscript><br/><?php print_error('Javascript is disabled. Please enable it.') ?></noscript>
  81. </div>
  82. </div>
  83. <div id="header" dojoType="dijit.layout.ContentPane" region="top">
  84. <!-- <a href='#' onclick="showHelp()"><?php echo __("Keyboard shortcuts") ?></a> | -->
  85. <a href="#" onclick="gotoMain()"><?php echo __('Exit preferences') ?></a>
  86. </div>
  87. <div id="main" dojoType="dijit.layout.BorderContainer">
  88. <div dojoType="dijit.layout.TabContainer" region="center" id="pref-tabs">
  89. <div id="genConfigTab" dojoType="dijit.layout.ContentPane"
  90. href="backend.php?op=pref-prefs"
  91. title="<?php echo __('Preferences') ?>"></div>
  92. <div id="feedConfigTab" dojoType="dijit.layout.ContentPane"
  93. href="backend.php?op=pref-feeds"
  94. title="<?php echo __('Feeds') ?>"></div>
  95. <div id="filterConfigTab" dojoType="dijit.layout.ContentPane"
  96. href="backend.php?op=pref-filters"
  97. title="<?php echo __('Filters') ?>"></div>
  98. <div id="labelConfigTab" dojoType="dijit.layout.ContentPane"
  99. href="backend.php?op=pref-labels"
  100. title="<?php echo __('Labels') ?>"></div>
  101. <?php if ($_SESSION["access_level"] >= 10) { ?>
  102. <div id="userConfigTab" dojoType="dijit.layout.ContentPane"
  103. href="backend.php?op=pref-users"
  104. title="<?php echo __('Users') ?>"></div>
  105. <div id="systemConfigTab" dojoType="dijit.layout.ContentPane"
  106. href="backend.php?op=pref-system"
  107. title="<?php echo __('System') ?>"></div>
  108. <?php } ?>
  109. <?php
  110. $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TABS,
  111. "hook_prefs_tabs", false);
  112. ?>
  113. </div>
  114. <div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
  115. <a class="insensitive" target="_blank" href="http://tt-rss.org/">
  116. Tiny Tiny RSS</a>
  117. <?php if (!defined('HIDE_VERSION')) { ?>
  118. v<?php echo VERSION ?>
  119. <?php } ?>
  120. &copy; 2005-<?php echo date('Y') ?>
  121. <a class="insensitive" target="_blank"
  122. href="http://fakecake.org/">Andrew Dolgov</a>
  123. </div> <!-- footer -->
  124. </div>
  125. </body>
  126. </html>