]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-maintenance.php
Mahor rewrite:
[mailer.git] / inc / modules / admin / what-maintenance.php
index 2935c413632f4119ff9ab058a0082306ec0a4ffa..282e6c679ea9e1ff70ef15ff0e520c6f3f7c9878 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
+
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 if (isset($_POST['ok']))
 {
        // De- or activate maintenance mode
-       switch ($_CONFIG['maintenance'])
+       switch (getConfig('maintenance'))
        {
-       case 'Y':
-               $target_mode = 'N';
+       case "Y":
+               $target_mode = "N";
                $out = ADMIN_MAINTENANCE_DEACTIVATED;
                break;
 
-       case 'N':
-               $target_mode = 'Y';
+       case "N":
+               $target_mode = "Y";
                $out = ADMIN_MAINTENANCE_ACTIVATED;
                break;
        }
 
        // Update config
-       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET maintenance='%s' WHERE config='0' LIMIT 1",
-        array($target_mode), __FILE__, __LINE__);
+       UPDATE_CONFIG("maintenance", $target_mode);
 
        // Load template
        LOAD_TEMPLATE("admin_settings_saved", false, $out);
-}
- else
-{
-       switch ($_CONFIG['maintenance'])
+} else {
+       switch (getConfig('maintenance'))
        {
-       case 'Y': // Maintenance mode is active
+       case "Y": // Maintenance mode is active
                define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_ACTIVE);
                break;
 
-       case 'N': // Maintenance mode is inactive
+       case "N": // Maintenance mode is inactive
                define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_INACTIVE);
                break;
        }
        // Display form
        LOAD_TEMPLATE("admin_maintenance_form");
 }
+
 //
 ?>