Migration
This commit is contained in:
69
0.9.0/panel/system/librairie/domaine/suppressiondomaine.php
Executable file
69
0.9.0/panel/system/librairie/domaine/suppressiondomaine.php
Executable file
@@ -0,0 +1,69 @@
|
||||
<?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<69> (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<6F>";
|
||||
$_SESSION['Lien'] = "Page-Domaine-SuppressionDomaineExterne.html";
|
||||
Redirect ('resultat.html');
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user