dolibarr 21.0.0-alpha
agenda.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2008-2015 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com>
4 * Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
5 * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
6 * Copyright (C) 2022 Frédéric France <frederic.france@netlogic.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
28// Load Dolibarr environment
29require '../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
32
33if (!$user->admin) {
35}
36
37// Load translation files required by the page
38$langs->loadLangs(array('admin', 'other', 'agenda'));
39
40$action = GETPOST('action', 'aZ09');
41$cancel = GETPOST('cancel', 'alpha');
42
43$search_event = GETPOST('search_event', 'alpha');
44
45// Get list of triggers available
46$triggers = array();
47$sql = "SELECT a.rowid, a.code, a.label, a.elementtype, a.rang as position";
48$sql .= " FROM ".MAIN_DB_PREFIX."c_action_trigger as a";
49$sql .= " ORDER BY a.rang ASC";
50$resql = $db->query($sql);
51if ($resql) {
52 $num = $db->num_rows($resql);
53 $i = 0;
54 while ($i < $num) {
55 $obj = $db->fetch_object($resql);
56 $triggers[$i]['rowid'] = $obj->rowid;
57 $triggers[$i]['code'] = $obj->code;
58 $triggers[$i]['element'] = $obj->elementtype;
59 $triggers[$i]['label'] = ($langs->trans("Notify_".$obj->code) != "Notify_".$obj->code ? $langs->trans("Notify_".$obj->code) : $obj->label);
60 $triggers[$i]['position'] = $obj->position;
61
62 $i++;
63 }
64 $db->free($resql);
65} else {
66 dol_print_error($db);
67}
68
69//$triggers = dol_sort_array($triggers, 'code', 'asc', 0, 0, 1);
70
71
72/*
73 * Actions
74 */
75
76// Purge search criteria
77if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
78 $search_event = '';
79 $action = '';
80}
81
82if (GETPOST('button_search_x', 'alpha') || GETPOST('button_search.x', 'alpha') || GETPOST('button_search', 'alpha')) { // To avoid the save when we click on search
83 $action = '';
84}
85
86if ($action == "save" && empty($cancel)) {
87 $i = 0;
88
89 $db->begin();
90
91 foreach ($triggers as $trigger) {
92 $keyparam = 'MAIN_AGENDA_ACTIONAUTO_'.$trigger['code'];
93 if ($search_event === '' || preg_match('/'.preg_quote($search_event, '/').'/i', $keyparam)) {
94 $res = dolibarr_set_const($db, $keyparam, (GETPOST($keyparam, 'alpha') ? GETPOST($keyparam, 'alpha') : ''), 'chaine', 0, '', $conf->entity);
95 if (!($res > 0)) {
96 $error++;
97 }
98 }
99 }
100
101 if (!$error) {
102 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
103 $db->commit();
104 } else {
105 setEventMessages($langs->trans("Error"), null, 'errors');
106 $db->rollback();
107 }
108}
109
110
111
116$form = new Form($db);
117
118$title = $langs->trans("AgendaSetup");
119$help_url = 'EN:Module_Agenda_En|FR:Module_Agenda|ES:Módulo_Agenda|DE:Modul_Terminplanung';
120
121llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-admin page-agenda');
122
123$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
124print load_fiche_titre($langs->trans("AgendaSetup"), $linkback, 'title_setup');
125
126print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
127print '<input type="hidden" name="token" value="'.newToken().'">';
128print '<input type="hidden" name="action" value="save">';
129
130$param = '';
131$param .= '&search_event='.urlencode($search_event);
132
133$head = agenda_prepare_head();
134
135print dol_get_fiche_head($head, 'autoactions', $langs->trans("Agenda"), -1, 'action');
136
137print '<span class="opacitymedium">'.$langs->trans("AgendaAutoActionDesc")." ".$langs->trans("OnlyActiveElementsAreShown", 'modules.php').'</span><br>';
138print "<br>\n";
139
140print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
141print '<table class="noborder centpercent">';
142print '<tr class="liste_titre">';
143print '<td class="liste_titre"><input type="text" name="search_event" value="'.dol_escape_htmltag($search_event).'"></td>';
144print '<td class="liste_titre"></td>';
145// Action column
146print '<td class="liste_titre maxwidthsearch">';
147$searchpicto = $form->showFilterButtons();
148print $searchpicto;
149print '</td>';
150print '</tr>';
151print '</tr>'."\n";
152
153print '<tr class="liste_titre">';
154print '<th class="liste_titre" colspan="2">'.$langs->trans("ActionsEvents").'</th>';
155print '<th class="liste_titre"><a href="'.$_SERVER["PHP_SELF"].'?action=selectall'.($param ? $param : '').'">'.$langs->trans("All").'</a>/<a href="'.$_SERVER["PHP_SELF"].'?action=selectnone'.($param ? $param : '').'">'.$langs->trans("None").'</a></th>';
156print '</tr>'."\n";
157// Show each trigger (list is in c_action_trigger)
158if (!empty($triggers)) {
159 foreach ($triggers as $trigger) {
160 $module = $trigger['element'];
161 if ($module == 'order_supplier' || $module == 'invoice_supplier') {
162 $module = 'fournisseur';
163 }
164 if ($module == 'shipping') {
165 $module = 'expedition';
166 }
167 if ($module == 'member') {
168 $module = 'adherent';
169 }
170 if ($module == 'project') {
171 $module = 'projet';
172 }
173 if ($module == 'proposal_supplier') {
174 $module = 'supplier_proposal';
175 }
176 if ($module == 'contact') {
177 $module = 'societe';
178 }
179 if ($module == 'facturerec') {
180 $module = 'facture';
181 }
182
183 // If 'element' value is myobject@mymodule instead of mymodule
184 $tmparray = explode('@', $module);
185 if (!empty($tmparray[1])) {
186 $module = $tmparray[1];
187 }
188
189 //print 'module='.$module.' code='.$trigger['code'].'<br>';
190 if (isModEnabled($module)) {
191 // Discard special case: If option FICHINTER_CLASSIFY_BILLED is not set, we discard both trigger FICHINTER_CLASSIFY_BILLED and FICHINTER_CLASSIFY_UNBILLED
192 if ($trigger['code'] == 'FICHINTER_CLASSIFY_BILLED' && !getDolGlobalString('FICHINTER_CLASSIFY_BILLED')) {
193 continue;
194 }
195 if ($trigger['code'] == 'FICHINTER_CLASSIFY_UNBILLED' && !getDolGlobalString('FICHINTER_CLASSIFY_BILLED')) {
196 continue;
197 }
198 if ($trigger['code'] == 'ACTION_CREATE') {
199 // This is the trigger to add an event, enabling it will create infinite loop
200 continue;
201 }
202
203 if ($search_event === '' || preg_match('/'.preg_quote($search_event, '/').'/i', $trigger['code'])) {
204 print '<!-- '.$trigger['position'].' -->';
205 print '<tr class="oddeven">';
206 print '<td>'.$trigger['code'].'</td>';
207 print '<td>'.$trigger['label'].'</td>';
208 print '<td class="right" width="40">';
209 $key = 'MAIN_AGENDA_ACTIONAUTO_'.$trigger['code'];
210 $value = getDolGlobalInt($key);
211 print '<input class="oddeven" type="checkbox" name="'.$key.'" value="1"'.((($action == 'selectall' || $value) && $action != "selectnone") ? ' checked' : '').'>';
212 print '</td></tr>'."\n";
213 }
214 }
215 }
216}
217print '</table>';
218print '</div>';
219
220print dol_get_fiche_end();
221
222print $form->buttonsSaveCancel("Save", '');
223
224print "</form>\n";
225
226
227print "<br>";
228
229// End of page
230llxFooter();
231$db->close();
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).
agenda_prepare_head()
Prepare array with list of tabs.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:70
Class to manage generation of HTML components Only common components must be here.
llxFooter()
Footer empty.
Definition document.php:107
load_fiche_titre($title, $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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.