Files
keliopanel-v1/0.9.0/panel/system/librairie/domaine/suppressiondomaine.php
2016-02-21 01:33:05 +01:00

69 lines
2.3 KiB
PHP
Executable File

<?php
/*
Copyright (C) 2007 Mercier Benjamin
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
// Librairie contenant la suppression des domaines
if ( VerifPOST("Domaine", "#^[a-z0-9.-]+\.[a-z]+$#", 3, 120) == "ChaineValide" )
{
if ( VerifPOST("Confirmation", "#^oui$#", 3, 3) == "ChaineValide" )
{
$VerifExistence = $MySql->Select ("*", "domaine", "Adresse='".$_POST['Domaine']."'", "", "", "", "");
if ( $VerifExistence != FALSE )
{
if ( $VerifExistence[0]["Utilisateur"] == $_SESSION['Utilisateur'] )
{
if ( $VerifExistence[0]["Status"] == "2" )
{
$UpdateDB = $MySql->Update ("domaine", "Status", "3", "Adresse='".$_POST['Domaine']."'");
Redirect ('Page-Domaine-Recapitulatif.html');
}
else
{
$_SESSION['Resultat'] = "Ce domaine n'est pas activé (ou deja en cours de suppression)";
$_SESSION['Lien'] = "Page-Domaine-SuppressionDomaineExterne.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Monsieur veut la jouer h4X00R ?";
$_SESSION['Lien'] = "Page-Domaine-SuppressionDomaineExterne.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Ce domaine n'existe pas";
$_SESSION['Lien'] = "Page-Domaine-SuppressionDomaineExterne.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Le code de confirmation est incorrect";
$_SESSION['Lien'] = "Page-Domaine-SuppressionDomaineExterne.html";
Redirect ('resultat.html');
}
}
else
{
$_SESSION['Resultat'] = "Aucun domaine n'est selectioné";
$_SESSION['Lien'] = "Page-Domaine-SuppressionDomaineExterne.html";
Redirect ('resultat.html');
}
?>