[SPIP] ~v3.0.20-->v3.0.25
[lhc/web/clavette_www.git] / www / plugins-dist / sites / formulaires / exporter_sites.php
1 <?php
2
3 /***************************************************************************\
4 * SPIP, Systeme de publication pour l'internet *
5 * *
6 * Copyright (c) 2001-2016 *
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 function formulaires_exporter_sites_charger_dist(){
16
17 if (!autoriser('exporter','_sites'))
18 return false;
19
20 return array(
21 'id_parent'=>0,
22 'exporter_publie_seulement' => 0,
23 'exporter_avec_mots_cles' => 1,
24 );
25 }
26
27 function formulaires_exporter_sites_traiter_dist(){
28 $id_parent = intval(_request('id_parent'));
29 $exporter_publie_seulement = _request('exporter_publie_seulement')?1:0;
30 $exporter_avec_mots_cles = _request('exporter_avec_mots_cles')?1:0;
31
32 include_spip('inc/actions');
33 $redirect = generer_action_auteur('exporter_bookmarks',"$id_parent-$exporter_publie_seulement-$exporter_avec_mots_cles");
34 return array('redirect'=>$redirect);
35 }