Files
keliopanel-v1/0.7.1/panel/module/domaine/recapitulatif.php
2016-02-21 01:33:05 +01:00

133 lines
4.7 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.
*/
$ListTable = $MySql->Select ("*", "domaine", "Utilisateur='".$_SESSION['Utilisateur']."'", "", "", "", "");
$CountEnregistrement = count ($ListTable);
if ( $ListTable == FALSE ) { $CountEnregistrement = 0; }
?>
<h3>
Récapitulatif de vos domaines externes
<a style="border: 0px;" href="http://wiki.kelio.org/doku.php?id=doc_panel:domaine"><img style="vertical-align:middle; border: 0px;" src="image/icons/question.png" alt="Aide" title="Aide" /></a>
</h3>
<br />
Actuellement, vous avez <?php echo $CountEnregistrement; ?> domaine(s) externe(s)
<br />Passez votre souris sur le commentaire pour le voir en entier.
<br />Idem pour le chemin, ainsi que le Basedir<br />
<br />
Le statut "Création" signifie que votre domaine est en attente de création par notre robot. <br />
Normalement, cette opération prend moins d'une heure.<br />
Il en est de meme pour le statut "Suppression".
<br /><br />
<div style="border:#006633 1px solid; width: 90%; margin: auto; margin-top: 15px;">
<table style="width:100%">
<tr>
<td class="Tableau1" style="text-align: center; width: 15%;"><strong>Adresse</strong></td>
<td class="Tableau1" style="text-align: center; width: 15%;"><strong>Date</strong></td>
<td class="Tableau1" style="text-align: center; width: 10%;"><strong>Statut</strong></td>
<td class="Tableau1" style="text-align: center; width: 20%;"><strong>Racine</strong></td>
<td class="Tableau1" style="text-align: center; width: 20%;"><strong>Basedir</strong></td>
<td class="Tableau1" style="text-align: center; width: 20%;"><strong>Commentaire</strong></td>
</tr>
<?php
if ( $ListTable == FALSE )
{
echo '<tr><td class="Tableau1" style="text-align: center; width: 100%;" colspan="6">Aucun domaine pour le moment</td></tr>';
}
else
{
for ($i=0; $i < $CountEnregistrement; $i++)
{
if ( $ListTable[$i]["Status"] == "1" )
{
$Status = "Creation";
}
elseif ( $ListTable[$i]["Status"] == "2" )
{
$Status = "Activé";
}
elseif ( $ListTable[$i]["Status"] == "3" )
{
$Status = "Suppression";
}
else
{
$Status = "Erreur";
}
if ( strlen($ListTable[$i]["Adresse"]) > 10 )
{
$Adresse = substr($ListTable[$i]["Adresse"], 0, 10)." ...";
}
else
{
$Adresse = $ListTable[$i]["Adresse"];
}
if ( strlen($ListTable[$i]["Racine"]) > 16 )
{
$Racine = substr($ListTable[$i]["Racine"], 0 ,16)." ...";
}
else
{
$Racine = $ListTable[$i]["Racine"];
}
if ( strlen ($ListTable[$i]["OpenBasedir"]) > 16 )
{
$Basedir = substr($ListTable[$i]["OpenBasedir"], 0 ,16)." ...";
}
else
{
$Basedir = $ListTable[$i]["OpenBasedir"];
}
if ( strlen ($ListTable[$i]["Commentaire"]) > 13 )
{
$Commentaire = substr($ListTable[$i]["Commentaire"], 0 ,16)." ...";
}
elseif ( strlen ($ListTable[$i]["Commentaire"]) == 0)
{
$Commentaire = "-";
}
else
{
$Commentaire = $ListTable[$i]["Commentaire"];
}
echo '
<tr>
<td class="Tableau1" style="text-align: center; width: 15%;"><span style="cursor: pointer" title="'.$ListTable[$i]["Adresse"].'">'.$Adresse.'</span></td>
<td class="Tableau1" style="text-align: center; width: 15%;"><span style="cursor: pointer" title="'.date ("d-m-Y H:i:s",$ListTable[$i]["DateDeCreation"]).'">'.date("d-m-Y", $ListTable[$i]["DateDeCreation"]).'</span></td>
<td class="Tableau1" style="text-align: center; width: 10%;">'.$Status.'</td>
<td class="Tableau1" style="text-align: center; width: 20%;"><span style="cursor: pointer" title="'.$ListTable[$i]["Racine"].'">'.$Racine.'</span></td>
<td class="Tableau1" style="text-align: center; width: 20%;"><span style="cursor: pointer" title="'.$ListTable[$i]["OpenBasedir"].'">'.$Basedir.'</span></td>
<td class="Tableau1" style="text-align: center; width: 20%;"><span style="cursor: pointer" title="'.$ListTable[$i]["Commentaire"].'">'.$Commentaire.'</span></td>
</tr>';
}
}
?>
</table>
</div>