[SPIP] +2.1.12
[velocampus/web/www.git] / www / ecrire / exec / delete_statistiques.php
1 <?php
2
3 /***************************************************************************\
4 * SPIP, Systeme de publication pour l'internet *
5 * *
6 * Copyright (c) 2001-2011 *
7 * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
8 * *
9 * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
10 * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
11 \***************************************************************************/
12
13 if (!defined('_ECRIRE_INC_VERSION')) return;
14
15 // http://doc.spip.org/@exec_delete_statistiques_dist
16 function exec_delete_statistiques_dist()
17 {
18 include_spip('inc/autoriser');
19 if (!autoriser('detruire','statistiques')) {
20 include_spip('inc/minipres');
21 echo minipres();
22 } else {
23 include_spip('inc/headers');
24 $admin = charger_fonction('admin', 'inc');
25 $res = $admin('delete_statistiques', _T('bouton_effacer_statistiques'), '');
26 if ($res) echo $res; else redirige_url_ecrire('statistiques_visites','');
27
28 }
29 }
30 ?>