[SPIP] ~v3.0.20-->v3.0.25
[lhc/web/clavette_www.git] / www / plugins-dist / forum / formulaires / configurer_forums_prives.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_configurer_forums_prives_charger_dist(){
16
17 return array(
18 'forum_prive_objets' => $GLOBALS['meta']["forum_prive_objets"],
19 'forum_prive' => $GLOBALS['meta']["forum_prive"],
20 'forum_prive_admin' => $GLOBALS['meta']["forum_prive_admin"],
21 );
22
23 }
24
25 function formulaires_configurer_forums_prives_traiter_dist(){
26 include_spip('inc/config');
27 appliquer_modifs_config();
28
29 return array('message_ok'=>_T('config_info_enregistree'));
30 }
31
32 ?>