dolibarr  16.0.5
spip.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
4  * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
5  * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
6  * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
7  * Copyright (C) 2005-2011 Regis Houssin <regis.houssin@inodbox.com>
8  * Copyright (C) 2011-2013 Juanjo Menent <jmenent@2byte.es>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
30 require '../main.inc.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/mailmanspip.lib.php';
33 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
34 
35 // Load translation files required by the page
36 $langs->loadLangs(array("admin", "members", "mailmanspip"));
37 
38 if (!$user->admin) {
40 }
41 
42 
43 $type = array('yesno', 'texte', 'chaine');
44 
45 $action = GETPOST('action', 'aZ09');
46 
47 
48 /*
49  * Actions
50  */
51 
52 // Action mise a jour ou ajout d'une constante
53 if ($action == 'update' || $action == 'add') {
54  $constnamearray = GETPOST("constname", 'array');
55  $constvaluearray = GETPOST("constvalue", 'array');
56  $consttypearray = GETPOST("consttype", 'array');
57  $constnotearray = GETPOST("constnote", 'array');
58 
59  // Action mise a jour ou ajout d'une constante
60  if ($action == 'update' || $action == 'add') {
61  foreach ($constnamearray as $key => $val) {
62  $constname = dol_escape_htmltag($constnamearray[$key]);
63  $constvalue = dol_escape_htmltag($constvaluearray[$key]);
64  $consttype = dol_escape_htmltag($consttypearray[$key]);
65  $constnote = dol_escape_htmltag($constnotearray[$key]);
66 
67  $res = dolibarr_set_const($db, $constname, $constvalue, $type[$consttype], 0, $constnote, $conf->entity);
68 
69  if (!($res > 0)) {
70  $error++;
71  }
72  }
73 
74  if (!$error) {
75  setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
76  } else {
77  setEventMessages($langs->trans("Error"), null, 'errors');
78  }
79  }
80 }
81 
82 // Action activation d'un sous module du module adherent
83 if ($action == 'set') {
84  $result = dolibarr_set_const($db, $_GET["name"], $_GET["value"], '', 0, '', $conf->entity);
85  if ($result < 0) {
86  dol_print_error($db);
87  }
88 }
89 
90 // Action desactivation d'un sous module du module adherent
91 if ($action == 'unset') {
92  $result = dolibarr_del_const($db, $_GET["name"], $conf->entity);
93  if ($result < 0) {
94  dol_print_error($db);
95  }
96 }
97 
98 
99 
100 /*
101  * View
102  */
103 
104 $help_url = '';
105 
106 llxHeader('', $langs->trans("MailmanSpipSetup"), $help_url);
107 
108 
109 $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
110 print load_fiche_titre($langs->trans("MailmanSpipSetup"), $linkback, 'title_setup');
111 
112 
113 $head = mailmanspip_admin_prepare_head();
114 
115 
116 /*
117  * Spip
118  */
119 if (!empty($conf->global->ADHERENT_USE_SPIP)) {
120  print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
121  print '<input type="hidden" name="token" value="'.newToken().'">';
122  print '<input type="hidden" name="action" value="update">';
123 
124  print dol_get_fiche_head($head, 'spip', $langs->trans("Setup"), -1, 'user');
125 
126  //$link=img_picto($langs->trans("Active"),'tick').' ';
127  $link = '<a href="'.$_SERVER["PHP_SELF"].'?action=unset&token='.newToken().'&value=0&name=ADHERENT_USE_SPIP">';
128  //$link.=$langs->trans("Disable");
129  $link .= img_picto($langs->trans("Activated"), 'switch_on');
130  $link .= '</a>';
131  // Edition des varibales globales
132  $constantes = array(
133  'ADHERENT_SPIP_SERVEUR',
134  'ADHERENT_SPIP_DB',
135  'ADHERENT_SPIP_USER',
136  'ADHERENT_SPIP_PASS'
137  );
138 
139  print load_fiche_titre($langs->trans('SPIPTitle'), $link, '');
140  print '<br>';
141 
142  form_constantes($constantes, 2);
143 
144  print dol_get_fiche_end();
145 
146  print '<div class="center"><input type="submit" class="button" value="'.$langs->trans("Update").'" name="update"></div>';
147 
148  print '</form>';
149 } else {
150  print dol_get_fiche_head($head, 'spip', $langs->trans("Setup"), 0, 'user');
151 
152  $link = '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=set&token='.newToken().'&value=1&name=ADHERENT_USE_SPIP">';
153  //$link.=$langs->trans("Activate");
154  $link .= img_picto($langs->trans("Disabled"), 'switch_off');
155  $link .= '</a>';
156  print load_fiche_titre($langs->trans('SPIPTitle'), $link, '');
157 
158  print dol_get_fiche_end();
159 }
160 
161 // End of page
162 llxFooter();
163 $db->close();
dol_escape_htmltag
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
Definition: functions.lib.php:1468
llxFooter
llxFooter()
Empty footer.
Definition: wrapper.php:73
dolibarr_del_const
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
Definition: admin.lib.php:552
load_fiche_titre
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
Definition: functions.lib.php:5204
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
dol_print_error
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
Definition: functions.lib.php:4844
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:116
img_picto
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
Definition: functions.lib.php:3880
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
newToken
newToken()
Return the value of token currently saved into session with name 'newtoken'.
Definition: functions.lib.php:10878
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
dolibarr_set_const
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
Definition: admin.lib.php:627
form_constantes
form_constantes($tableau, $strictw3c=0, $helptext='', $text='Value')
Show array with constants to edit.
Definition: admin.lib.php:1619
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
accessforbidden
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
Definition: security.lib.php:933
llxHeader
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59