Alternc  latest
Alternc logiel libre pour l'hébergement
aws_del.php
Go to the documentation of this file.
1 <?php
2 /*
3  ----------------------------------------------------------------------
4  AlternC - Web Hosting System
5  Copyright (C) 2000-2012 by the AlternC Development Team.
6  https://alternc.org/
7  ----------------------------------------------------------------------
8  LICENSE
9 
10  This program is free software; you can redistribute it and/or
11  modify it under the terms of the GNU General Public License (GPL)
12  as published by the Free Software Foundation; either version 2
13  of the License, or (at your option) any later version.
14 
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19 
20  To read the license please visit http://www.gnu.org/copyleft/gpl.html
21  ----------------------------------------------------------------------
22  Purpose of file: Delete requested awstats statistics.
23  ----------------------------------------------------------------------
24 */
25 require_once("../class/config.php");
26 
27 // On parcours les POST_VARS et on repere les del_.
28 reset($_POST);
29 $found=false;
30 while (list($key,$val)=each($_POST)) {
31  if (substr($key,0,4)=="del_") {
32  // Effacement du jeu de stats $val
33  $r=$aws->delete_stats($val);
34  $found=true;
35  if ($r) {
36  $msg->raise('INFO', "aws", _("The statistics %s has been successfully deleted"),$r);
37  }
38  }
39 }
40 
41 if (!$found) {
42  $msg->raise('INFO', "aws", _("Please check the statistics set you want to delete"));
43  }
44 
45 include("aws_list.php");
46 exit();
47 
48 ?>
exit
Definition: adm_doadd.php:70
$msg
Definition: bootstrap.php:75
$r
Definition: aws_add.php:75
$found
Definition: aws_del.php:29
$val
Definition: tempovars.php:15
if(empty($_POST['key'])||empty($_POST['val'])) $key
Definition: tempovars.php:14