prefs.php 4.5 KB

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