dolibarr 18.0.6
booking_agenda.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2022 Alice Adminson <aadminson@example.com>
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';
27require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
28require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/bookcal/class/booking.class.php';
31require_once DOL_DOCUMENT_ROOT.'/bookcal/lib/bookcal_booking.lib.php';
32
33
34// Load translation files required by the page
35$langs->loadLangs(array("agenda", "other"));
36
37// Get parameters
38$id = GETPOST('id', 'int');
39$ref = GETPOST('ref', 'alpha');
40$action = GETPOST('action', 'aZ09');
41$cancel = GETPOST('cancel', 'aZ09');
42$backtopage = GETPOST('backtopage', 'alpha');
43
44if (GETPOST('actioncode', 'array')) {
45 $actioncode = GETPOST('actioncode', 'array', 3);
46 if (!count($actioncode)) {
47 $actioncode = '0';
48 }
49} else {
50 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : (empty($conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT) ? '' : $conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT));
51}
52
53$search_rowid = GETPOST('search_rowid');
54$search_agenda_label = GETPOST('search_agenda_label');
55
56$limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
57$sortfield = GETPOST('sortfield', 'aZ09comma');
58$sortorder = GETPOST('sortorder', 'aZ09comma');
59$page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
60if (empty($page) || $page == -1) {
61 $page = 0;
62} // If $page is not defined, or '' or -1
63$offset = $limit * $page;
64$pageprev = $page - 1;
65$pagenext = $page + 1;
66if (!$sortfield) {
67 $sortfield = 'a.datep,a.id';
68}
69if (!$sortorder) {
70 $sortorder = 'DESC,DESC';
71}
72
73// Initialize technical objects
74$object = new Booking($db);
75$extrafields = new ExtraFields($db);
76$diroutputmassaction = $conf->bookcal->dir_output.'/temp/massgeneration/'.$user->id;
77$hookmanager->initHooks(array('bookingagenda', 'globalcard')); // Note that conf->hooks_modules contains array
78// Fetch optionals attributes and labels
79$extrafields->fetch_name_optionals_label($object->table_element);
80
81// Load object
82include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be include, not include_once // Must be include, not include_once. Include fetch and fetch_thirdparty but not fetch_optionals
83if ($id > 0 || !empty($ref)) {
84 $upload_dir = $conf->bookcal->multidir_output[!empty($object->entity) ? $object->entity : $conf->entity]."/".$object->id;
85}
86
87// There is several ways to check permission.
88// Set $enablepermissioncheck to 1 to enable a minimum low level of checks
89$enablepermissioncheck = 0;
90if ($enablepermissioncheck) {
91 $permissiontoread = $user->rights->bookcal->booking->read;
92 $permissiontoadd = $user->rights->bookcal->booking->write;
93} else {
94 $permissiontoread = 1;
95 $permissiontoadd = 1;
96}
97
98// Security check (enable the most restrictive one)
99//if ($user->socid > 0) accessforbidden();
100//if ($user->socid > 0) $socid = $user->socid;
101//$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
102//restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
103if (!isModEnabled('bookcal')) accessforbidden();
104if (!$permissiontoread) accessforbidden();
105
106
107/*
108 * Actions
109 */
110
111$parameters = array('id'=>$id);
112$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
113if ($reshook < 0) {
114 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
115}
116
117if (empty($reshook)) {
118 // Cancel
119 if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
120 header("Location: ".$backtopage);
121 exit;
122 }
123
124 // Purge search criteria
125 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
126 $actioncode = '';
127 $search_agenda_label = '';
128 }
129}
130
131
132
133/*
134 * View
135 */
136
137$form = new Form($db);
138
139if ($object->id > 0) {
140 $title = $langs->trans("Agenda");
141 //if (! empty($conf->global->MAIN_HTML_TITLE) && preg_match('/thirdpartynameonly/',$conf->global->MAIN_HTML_TITLE) && $object->name) $title=$object->name." - ".$title;
142 $help_url = 'EN:Module_Agenda_En|DE:Modul_Terminplanung';
143 llxHeader('', $title, $help_url);
144
145 if (!empty($conf->notification->enabled)) {
146 $langs->load("mails");
147 }
148 $head = bookingPrepareHead($object);
149
150
151 print dol_get_fiche_head($head, 'agenda', $langs->trans("Booking"), -1, $object->picto);
152
153 // Object card
154 // ------------------------------------------------------------
155 $linkback = '<a href="'.dol_buildpath('/bookcal/booking_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
156
157 $morehtmlref = '<div class="refidno">';
158 /*
159 // Ref customer
160 $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
161 $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
162 // Thirdparty
163 $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
164 // Project
165 if (isModEnabled('project')) {
166 $langs->load("projects");
167 $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
168 if ($permissiontoadd) {
169 if ($action != 'classify') {
170 //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&token='.newToken().'&id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
171 }
172 $morehtmlref.=' : ';
173 if ($action == 'classify') {
174 //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
175 $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
176 $morehtmlref.='<input type="hidden" name="action" value="classin">';
177 $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
178 $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
179 $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
180 $morehtmlref.='</form>';
181 } else {
182 $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
183 }
184 } else {
185 if (! empty($object->fk_project)) {
186 $proj = new Project($db);
187 $proj->fetch($object->fk_project);
188 $morehtmlref .= ': '.$proj->getNomUrl();
189 } else {
190 $morehtmlref .= '';
191 }
192 }
193 }*/
194 $morehtmlref .= '</div>';
195
196
197 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
198
199 print '<div class="fichecenter">';
200 print '<div class="underbanner clearboth"></div>';
201
202 $object->info($object->id);
203 dol_print_object_info($object, 1);
204
205 print '</div>';
206
207 print dol_get_fiche_end();
208
209
210
211 // Actions buttons
212
213 $objthirdparty = $object;
214 $objcon = new stdClass();
215
216 $out = '&origin='.urlencode($object->element.'@'.$object->module).'&originid='.urlencode($object->id);
217 $urlbacktopage = $_SERVER['PHP_SELF'].'?id='.$object->id;
218 $out .= '&backtopage='.urlencode($urlbacktopage);
219 $permok = $user->hasRight('agenda', 'myactions', 'create');
220 if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
221 //$out.='<a href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create';
222 if (get_class($objthirdparty) == 'Societe') {
223 $out .= '&socid='.urlencode($objthirdparty->id);
224 }
225 $out .= (!empty($objcon->id) ? '&contactid='.urlencode($objcon->id) : '');
226 //$out.=$langs->trans("AddAnAction").' ';
227 //$out.=img_picto($langs->trans("AddAnAction"),'filenew');
228 //$out.="</a>";
229 }
230
231
232 print '<div class="tabsAction">';
233
234 if (isModEnabled('agenda')) {
235 if ($user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create')) {
236 print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out.'">'.$langs->trans("AddAction").'</a>';
237 } else {
238 print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans("AddAction").'</a>';
239 }
240 }
241
242 print '</div>';
243
244 if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
245 $param = '&id='.$object->id.(!empty($socid) ? '&socid='.$socid : '');
246 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
247 $param .= '&contextpage='.urlencode($contextpage);
248 }
249 if ($limit > 0 && $limit != $conf->liste_limit) {
250 $param .= '&limit='.((int) $limit);
251 }
252
253
254 //print load_fiche_titre($langs->trans("ActionsOnBooking"), '', '');
255
256 // List of all actions
257 $filters = array();
258 $filters['search_agenda_label'] = $search_agenda_label;
259 $filters['search_rowid'] = $search_rowid;
260
261 // TODO Replace this with same code than into list.php
262 show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder, $object->module);
263 }
264}
265
266// End of page
267llxFooter();
268$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:56
llxFooter()
Empty footer.
Definition wrapper.php:70
bookingPrepareHead($object)
Prepare array of tabs for Booking.
Class for Booking.
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
show_actions_done($conf, $langs, $db, $filterobj, $objcon='', $noprint=0, $actioncode='', $donetodo='done', $filters=array(), $sortfield='a.datep, a.id', $sortorder='DESC', $module='')
Show html area with actions (done or not, ignore the name of function).
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.