Пример #1
0
 function setupConfig()
 {
     date_default_timezone_set("Europe/London");
     $dao = getAdminDAO();
     $dao->getConfig($this);
     switch ($this->restricttype) {
         case 1:
             $this->restrictdate = date("Y") - $this->restrictyears . date("-n-j");
             break;
     }
 }
Пример #2
0
<?php

set_include_path("../..");
include_once "modules/db/DAOFactory.php";
if ($_SESSION["admin"] == 0) {
    die(include "inc/forbidden.inc.php");
}
$dao = getAdminDAO();
$c = new Config();
$c->setFromPost();
if ($dao->updateConfig($c)) {
    $config = Config::getInstance();
    $config->setupConfig();
}
header('Location: ../../admin.php');