A tumblelog CMS built on AJAX, PHP and MySQL.

settings.php 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. if(!defined('entry')) define('entry',true);
  3. /* ===========================
  4. gelato CMS - A PHP based tumblelog CMS
  5. development version
  6. http://www.gelatocms.com/
  7. gelato CMS is a free software licensed under the GPL 2.0
  8. Copyright (C) 2007 by Pedro Santana <pecesama at gmail dot com>
  9. =========================== */
  10. require_once('../entry.php');
  11. global $user, $conf, $tumble;
  12. if ($user->isAdmin()) {
  13. if(isset($_POST["btnsubmit"])) {
  14. unset($_POST["btnsubmit"]);
  15. $_POST["url_installation"] = (endsWith($_POST["url_installation"], "/")) ? substr($_POST["url_installation"], 0, strlen($_POST["url_installation"])-1) : $_POST["url_installation"] ;
  16. $tumble->saveSettings($_POST);
  17. } else {
  18. ?>
  19. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  20. <html xmlns="http://www.w3.org/1999/xhtml">
  21. <head>
  22. <title>gelato :: <?php echo __("settings")?></title>
  23. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  24. <meta name="generator" content="gelato cms <?php echo version();?>" />
  25. <link rel="shortcut icon" href="<?php echo $conf->urlGelato;?>/images/favicon.ico" />
  26. <script language="javascript" type="text/javascript" src="<?php echo $conf->urlGelato;?>/admin/scripts/jquery.js"></script>
  27. <script type="text/javascript">
  28. $(document).ready(function(){
  29. $("#divMessages").fadeOut(5000,function(){
  30. $("#divMessages").css({display:"none"});
  31. });
  32. });
  33. </script>
  34. <style type="text/css" media="screen">
  35. @import "<?php echo $conf->urlGelato;?>/admin/css/style.css";
  36. </style>
  37. </head>
  38. <body>
  39. <div id="div-process" style="display:none;"><?php echo __("Processing request&hellip;")?></div>
  40. <div id="cont">
  41. <div id="head">
  42. <h1><a href="<?php echo $conf->urlGelato;?>/admin/index.php" title="gelato :: <?php echo __("home")?>">gelato cms</a></h1>
  43. <ul id="nav">
  44. <li><a href="<?php echo $conf->urlGelato;?>/" title="<?php echo __("Take me to the tumblelog")?>"><?php echo __("Back to the Tumblelog")?></a></li>
  45. </ul>
  46. </div>
  47. <div id="main">
  48. <div class="box">
  49. <ul class="menu manage">
  50. <h3><?php echo __("Tumblelog configuration")?></h3>
  51. <li><a href="<?php echo $conf->urlGelato;?>/admin/index.php"><?php echo __("Post")?></a></li>
  52. <li><a href="<?php echo $conf->urlGelato;?>/admin/admin.php"><?php echo __("Users")?></a></li>
  53. <li><a href="<?php echo $conf->urlGelato;?>/admin/plugins.php"><?php echo __("Plugins")?></a></li>
  54. <li><a href="<?php echo $conf->urlGelato;?>/admin/options.php"><?php echo __("Options")?></a></li>
  55. <li class="selected"><a><?php echo __("Settings")?></a></li>
  56. </ul>
  57. <?php
  58. if (isset($_GET["modified"])) {
  59. if ($_GET["modified"]=="true") {
  60. echo "<div class=\"exito\" id=\"divMessages\">".__("The configuration has been modified successfully.")."</div>";
  61. }
  62. }
  63. if (isset($_GET["error"])) {
  64. if ($_GET["error"]==1) {
  65. echo "<div class=\"error\" id=\"divMessages\"><strong>".__("Error on the database server: ")."</strong>".$_GET["des"]."</div>";
  66. }
  67. }
  68. ?>
  69. <div class="tabla">
  70. <form action="settings.php" method="post" id="settings_form" autocomplete="off" class="newpost">
  71. <fieldset>
  72. <ul>
  73. <li><label for="title"><?php echo __("Title:")?></label>
  74. <input type="text" name="title" id="title" value="<?php echo $conf->title;?>" class="txt"/></li>
  75. <li><label for="description"><?php echo __("Description:")?></label>
  76. <input type="text" name="description" id="description" value="<?php echo $conf->description;?>" class="txt"/></li>
  77. <li><label for="url_installation"><?php echo __("Installation URL")?></label>
  78. <input type="text" name="url_installation" id="url_installation" value="<?php echo $conf->urlGelato;?>" class="txt"/></li>
  79. <li><label for="posts_limit"><?php echo __("Post limit:")?></label>
  80. <input type="text" name="posts_limit" id="posts_limit" value="<?php echo $conf->postLimit;?>" class="txt"/></li>
  81. <li><label for="lang"><?php echo __("Language:")?></label>
  82. <select id="lang" name="lang">
  83. <?php
  84. $langs = getLangs();
  85. foreach ($langs as $key=>$lang) {
  86. $active = ($conf->lang==$key) ? "selected" : "";
  87. echo "<option value=\"".$key."\" ".$active.">".$lang."</option>\n";
  88. }
  89. ?>
  90. </select>
  91. </li>
  92. <li><label for="template"><?php echo __("Template:")?></label>
  93. <select id="template" name="template">
  94. <?php
  95. $themes = getThemes();
  96. foreach ($themes as $theme) {
  97. $active = ($conf->template==$theme) ? "selected" : "";
  98. echo "<option value=\"".$theme."\" ".$active.">".$theme."</option>\n";
  99. }
  100. ?>
  101. </select>
  102. </li>
  103. <?php
  104. $trigger->call('add_settings_panel');
  105. ?>
  106. </ul>
  107. </fieldset>
  108. <p>
  109. <input type="submit" name="btnsubmit" id="btnsubmit" value="<?php echo __("Modify")?>" class="submit"/>
  110. </p>
  111. </form>
  112. </div>
  113. <div class="footer-box">&nbsp;</div>
  114. </div>
  115. </div>
  116. <div id="foot">
  117. <a href="http://www.gelatocms.com/" title="gelato CMS">gelato CMS</a> :: PHP/MySQL Tumblelog Content Management System.
  118. </div>
  119. </div>
  120. </body>
  121. </html>
  122. <?php
  123. }
  124. } else {
  125. header("Location: ".$conf->urlGelato."/login.php");
  126. }
  127. ?>