dolibarr 19.0.3
setup.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2019 Frédéric FRANCE <frederic.france@free.fr>
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25// Load Dolibarr environment
26require '../../main.inc.php';
27
28// Libraries
29require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/zapier/lib/zapier.lib.php';
31
32// Translations
33$langs->loadLangs(array('admin', 'zapier'));
34
35// Access control
36if (!$user->admin) {
38}
39
40// Parameters
41$action = GETPOST('action', 'aZ09');
42$backtopage = GETPOST('backtopage', 'alpha');
43
44$arrayofparameters = array(
45// 'ZAPIERFORDOLIBARR_MYPARAM1'=>array('css'=>'minwidth200', 'enabled'=>1),
46// 'ZAPIERFORDOLIBARR_MYPARAM2'=>array('css'=>'minwidth500', 'enabled'=>1)
47);
48
49if (!isModEnabled('zapier')) {
51}
52if (empty($user->admin)) {
54}
55
56
57/*
58 * Actions
59 */
60
61include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
62
63/*
64 * View
65 */
66
67$page_name = 'ZapierForDolibarrSetup';
68$help_url = 'EN:Module_Zapier';
69llxHeader('', $langs->trans($page_name), $help_url);
70
71// Subheader
72$linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1').'">'.$langs->trans("BackToModuleList").'</a>';
73
74print load_fiche_titre($langs->trans($page_name), $linkback, 'object_zapier');
75
76// Configuration header
78print dol_get_fiche_head($head, 'settings', '', -1, "zapier");
79
80
81if ($action == 'edit') {
82 print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
83 print '<input type="hidden" name="token" value="'.newToken().'">';
84 print '<input type="hidden" name="action" value="update">';
85
86 print '<table class="noborder centpercent">';
87 print '<tr class="liste_titre"><td class="titlefield">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
88
89 foreach ($arrayofparameters as $key => $val) {
90 print '<tr class="oddeven"><td>';
91 print $form->textwithpicto($langs->trans($key), $langs->trans($key.'Tooltip'));
92 print '</td><td><input name="'.$key.'" class="flat '.(empty($val['css']) ? 'minwidth200' : $val['css']).'" value="'.getDolGlobalString($key).'"></td></tr>';
93 }
94 print '</table>';
95
96 print '<br><div class="center">';
97 print '<input class="button button-save" type="submit" value="'.$langs->trans("Save").'">';
98 print '</div>';
99
100 print '</form>';
101 print '<br>';
102} else {
103 if (!empty($arrayofparameters)) {
104 print '<table class="noborder centpercent">';
105 print '<tr class="liste_titre"><td class="titlefield">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
106
107 foreach ($arrayofparameters as $key => $val) {
108 print '<tr class="oddeven"><td>';
109 print $form->textwithpicto($langs->trans($key), $langs->trans($key.'Tooltip'));
110 print '</td><td>'.getDolGlobalString($key).'</td></tr>';
111 }
112
113 print '</table>';
114
115 print '<div class="tabsAction">';
116 print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'">'.$langs->trans("Modify").'</a>';
117 print '</div>';
118 } else {
119 // Setup page goes here
120 echo '<br><br><span class="opacitymediumdisabled">'.$langs->trans("ZapierSetupPage").'</span><br><br>';
121 //print '<br>'.$langs->trans("NothingToSetup");
122 }
123}
124
125
126// Page end
127print dol_get_fiche_end();
128
129llxFooter();
130$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
zapierAdminPrepareHead()
Prepare admin pages header.