base_delete_stats.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /***************************************************************************\
  3. * SPIP, Systeme de publication pour l'internet *
  4. * *
  5. * Copyright (c) 2001-2014 *
  6. * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
  7. * *
  8. * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
  9. * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
  10. \***************************************************************************/
  11. if (!defined("_ECRIRE_INC_VERSION")) return;
  12. function exec_base_delete_stats_dist()
  13. {
  14. include_spip('inc/autoriser');
  15. if (!autoriser('detruire','_statistiques')) {
  16. include_spip('inc/minipres');
  17. echo minipres();
  18. } else {
  19. include_spip('inc/headers');
  20. $admin = charger_fonction('admin', 'inc');
  21. $res = $admin('delete_stats', _T('statistiques:bouton_effacer_statistiques'), '');
  22. if ($res) echo $res; else redirige_url_ecrire('stats_visites','');
  23. }
  24. }
  25. ?>