AlternC/bureau/admin/dom_substatus.php

36 lines
793 B
PHP
Raw Normal View History

2011-01-29 18:26:32 +00:00
<?php
require_once("../class/config.php");
$fields = array (
"sub_id" => array ("post", "integer", ""),
"status" => array ("post", "string", ""),
2011-01-29 18:26:32 +00:00
);
getFields($fields);
$dom->lock();
$r=$dom->sub_domain_change_status($sub_id,$status);
# Usefull for dom_edit
$domi = $dom->get_sub_domain_all($sub_id);
$domain=$domi['domain'];
$sub=$domi['name'];
2011-01-29 18:26:32 +00:00
$dom->unlock();
if (!$r) {
$error=$err->errstr();
$noread=true;
include("dom_edit.php");
exit();
} else {
$t = time();
// XXX: we assume the cron job is at every 5 minutes
$error=strtr(_("The modifications will take effect at %time. Server time is %now."), array('%now' => date('H:i:s', $t), '%time' => date('H:i:s', ($t-($t%300)+300))));
foreach($fields as $k=>$v) unset($k);
}
include("dom_edit.php");
exit;
?>