[SPIP] v3.2.1-->v3.2.3
[lhc/web/www.git] / www / plugins-dist / sites / action / purger_site.php
1 <?php
2
3 /***************************************************************************\
4 * SPIP, Systeme de publication pour l'internet *
5 * *
6 * Copyright (c) 2001-2019 *
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")) {
14 return;
15 }
16
17 function action_purger_site_dist($id_syndic = null) {
18
19 if (is_null($id_syndic)) {
20 $securiser_action = charger_fonction('securiser_action', 'inc');
21 $id_syndic = $securiser_action();
22 }
23
24 if ($id_syndic = intval($id_syndic)
25 and autoriser('purger', 'site', $id_syndic)
26 ) {
27
28 include_spip('base/abstract_sql');
29 sql_delete('spip_syndic_articles', 'id_syndic=' . intval($id_syndic));
30 }
31 }