dolibarr 24.0.0-beta
myobject_agenda.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) ---Replace with your own copyright and developer email---
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26//if (! defined('NOREQUIREDB')) define('NOREQUIREDB', '1'); // Do not create database handler $db
27//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Do not load object $user
28//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC', '1'); // Do not load object $mysoc
29//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN', '1'); // Do not load object $langs
30//if (! defined('NOSCANGETFORINJECTION')) define('NOSCANGETFORINJECTION', '1'); // Do not check injection attack on GET parameters
31//if (! defined('NOSCANPOSTFORINJECTION')) define('NOSCANPOSTFORINJECTION', '1'); // Do not check injection attack on POST parameters
32//if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL', '1'); // Do not roll the Anti CSRF token (used if MAIN_SECURITY_CSRF_WITH_TOKEN is on)
33//if (! defined('NOSTYLECHECK')) define('NOSTYLECHECK', '1'); // Do not check style html tag into posted data
34//if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
35//if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
36//if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
37//if (! defined("NOLOGIN")) define("NOLOGIN", '1'); // If this page is public (can be called outside logged session). This include the NOIPCHECK too.
38//if (! defined('NOIPCHECK')) define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
39//if (! defined("MAIN_LANG_DEFAULT")) define('MAIN_LANG_DEFAULT', 'auto'); // Force lang to a particular value
40//if (! defined("MAIN_AUTHENTICATION_MODE")) define('MAIN_AUTHENTICATION_MODE', 'aloginmodule'); // Force authentication handler
41//if (! defined("MAIN_SECURITY_FORCECSP")) define('MAIN_SECURITY_FORCECSP', 'none'); // Disable all Content Security Policies
42//if (! defined('CSRFCHECK_WITH_TOKEN')) define('CSRFCHECK_WITH_TOKEN', '1'); // Force use of CSRF protection with tokens even for GET
43//if (! defined('NOBROWSERNOTIF')) define('NOBROWSERNOTIF', '1'); // Disable browser notification
44
45// Load Dolibarr environment
46$res = 0;
47// Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
48if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
49 $res = @include str_replace("..", "", $_SERVER["CONTEXT_DOCUMENT_ROOT"])."/main.inc.php";
50}
51// Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
52$tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME'];
53$tmp2 = realpath(__FILE__);
54$i = strlen($tmp) - 1;
55$j = strlen($tmp2) - 1;
56while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
57 $i--;
58 $j--;
59}
60if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/main.inc.php")) {
61 $res = @include substr($tmp, 0, ($i + 1))."/main.inc.php";
62}
63if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php")) {
64 $res = @include dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php";
65}
66// Try main.inc.php using relative path
67if (!$res && file_exists("../main.inc.php")) {
68 $res = @include "../main.inc.php";
69}
70if (!$res && file_exists("../../main.inc.php")) {
71 $res = @include "../../main.inc.php";
72}
73if (!$res && file_exists("../../../main.inc.php")) {
74 $res = @include "../../../main.inc.php";
75}
76if (!$res) {
77 die("Include of main fails");
78}
87include_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
88include_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
89include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
90dol_include_once('/mymodule/class/myobject.class.php');
91dol_include_once('/mymodule/lib/mymodule_myobject.lib.php');
92
93// Load translation files required by the page
94$langs->loadLangs(array("mymodule@mymodule", "other"));
95
96// Get parameters
97$id = GETPOSTINT('id');
98$ref = GETPOST('ref', 'alpha');
99$action = GETPOST('action', 'aZ09');
100$cancel = GETPOST('cancel');
101$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : getDolDefaultContextPage(__FILE__); // To manage different context of search
102$backtopage = GETPOST('backtopage', 'alpha');
103
104if (GETPOSTISARRAY('actioncode')) {
105 $actioncode = GETPOST('actioncode', 'array:alpha', 3);
106 if (!count($actioncode)) {
107 $actioncode = '0';
108 }
109} else {
110 $actioncode = GETPOST("actioncode", "alpha", 3) ? GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : getDolGlobalString('AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECT'));
111}
112$search_rowid = GETPOST('search_rowid');
113$search_agenda_label = GETPOST('search_agenda_label');
114$search_complete = GETPOST('search_complete');
115$search_filtert = GETPOSTINT('search_filtert');
116$search_dateevent_start = GETPOSTDATE('dateevent_start');
117$search_dateevent_end = GETPOSTDATE('dateevent_end');
118
119$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
120$sortfield = GETPOST('sortfield', 'aZ09comma');
121$sortorder = GETPOST('sortorder', 'aZ09comma');
122$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
123if (empty($page) || $page == -1) {
124 // If $page is not defined, or '' or -1 or if we click on clear filters
125 $page = 0;
126}
127$offset = $limit * $page;
128$pageprev = $page - 1;
129$pagenext = $page + 1;
130if (!$sortfield) {
131 $sortfield = 'a.datep,a.id';
132}
133if (!$sortorder) {
134 $sortorder = 'DESC,DESC';
135}
136
137// Initialize a technical objects
138$object = new MyObject($db);
139$extrafields = new ExtraFields($db);
140$diroutputmassaction = $conf->mymodule->dir_output.'/temp/massgeneration/'.$user->id;
141$hookmanager->initHooks(array($object->element.'agenda', 'globalcard')); // Note that conf->hooks_modules contains array
142// Fetch optionals attributes and labels
143$extrafields->fetch_name_optionals_label($object->table_element);
144
145// Load object
146include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be 'include', not 'include_once'. Include fetch and fetch_thirdparty but not fetch_optionals
147if ($id > 0 || !empty($ref)) {
148 $upload_dir = $conf->mymodule->multidir_output[!empty($object->entity) ? $object->entity : $conf->entity]."/".$object->id;
149}
150
151// There is several ways to check permission.
152// Set $enablepermissioncheck to 1 to enable a minimum low level of checks
153$enablepermissioncheck = getDolGlobalInt('MYMODULE_ENABLE_PERMISSION_CHECK');
154if ($enablepermissioncheck) {
155 $permissiontoread = $user->hasRight('mymodule', 'myobject', 'read');
156 $permissiontoadd = $user->hasRight('mymodule', 'myobject', 'write');
157} else {
158 $permissiontoread = 1;
159 $permissiontoadd = 1;
160}
161
162// Security check (enable the most restrictive one)
163//if ($user->socid > 0) accessforbidden();
164//if ($user->socid > 0) $socid = $user->socid;
165//$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
166//restrictedArea($user, $object->module, $object->id, $object->table_element, $object->element, 'fk_soc', 'rowid', $isdraft);
167if (!isModEnabled("mymodule")) {
169}
170if (!$permissiontoread) {
172}
173
174
175/*
176 * Actions
177 */
178
179$parameters = array('id' => $id);
180$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
181if ($reshook < 0) {
182 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
183}
184
185if (empty($reshook)) {
186 // Cancel
187 if (GETPOST('cancel', 'alpha') && !empty($backtopage)) {
188 header("Location: ".$backtopage);
189 exit;
190 }
191
192 // Purge search criteria
193 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
194 $actioncode = '';
195 $search_rowid = '';
196 $search_agenda_label = '';
197 $search_complete = '';
198 $search_filtert = '';
199 }
200}
201
202
203
204/*
205 * View
206 */
207
208$form = new Form($db);
209
210if ($object->id > 0) {
211 $title = $langs->trans("MyObject")." - ".$langs->trans('Agenda');
212 //$title = $object->ref." - ".$langs->trans("Agenda");
213 $help_url = 'EN:Module_Agenda_En|DE:Modul_Terminplanung';
214
215 llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-mymodule page-card_agenda');
216
217 if (isModEnabled('notification')) {
218 $langs->load("mails");
219 }
220 $head = myobjectPrepareHead($object);
221
222
223 print dol_get_fiche_head($head, 'agenda', $langs->trans("MyObject"), -1, $object->picto);
224
225 // Object card
226 // ------------------------------------------------------------
227 $linkback = '<a href="'.dol_buildpath('/mymodule/myobject_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
228
229 $morehtmlref = '<div class="refidno">';
230 /*
231 // Ref customer
232 $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
233 $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
234 // Thirdparty
235 $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
236 // Project
237 if (isModEnabled('project')) {
238 $langs->load("projects");
239 $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
240 if ($permissiontoadd) {
241 if ($action != 'classify') {
242 //$morehtmlref.='<a class="editfielda" href="' . dolBuildUrl($_SERVER['PHP_SELF'], ['action' => 'classify', 'id' => $object->id], true) . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
243 }
244 $morehtmlref.=' : ';
245 if ($action == 'classify') {
246 //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
247 $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
248 $morehtmlref.='<input type="hidden" name="action" value="classin">';
249 $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
250 $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
251 $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
252 $morehtmlref.='</form>';
253 } else {
254 $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
255 }
256 } else {
257 if (!empty($object->fk_project)) {
258 $proj = new Project($db);
259 $proj->fetch($object->fk_project);
260 $morehtmlref .= ': '.$proj->getNomUrl();
261 } else {
262 $morehtmlref .= '';
263 }
264 }
265 }*/
266 $morehtmlref .= '</div>';
267
268
269 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
270
271 print '<div class="fichecenter">';
272 print '<div class="underbanner clearboth"></div>';
273
274 $object->info($object->id);
275 dol_print_object_info($object, 1);
276
277 print '</div>';
278
279 print dol_get_fiche_end();
280
281
282
283 // Actions buttons
284
285 $objthirdparty = $object;
286 $objcon = new stdClass();
287
288 $out = '&origin='.urlencode($object->element.(!empty($object->module) ? '@'.$object->module : '')).'&originid='.urlencode((string) $object->id);
289 $urlbacktopage = $_SERVER['PHP_SELF'].'?id='.$object->id;
290 $out .= '&backtopage='.urlencode($urlbacktopage);
291 $permok = $user->hasRight('agenda', 'myactions', 'create');
292 if ((!empty($objthirdparty->id) || !empty($objcon->id)) && $permok) {
293 //$out.='<a href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create';
294 if (get_class($objthirdparty) == 'Societe') {
295 $out .= '&socid='.urlencode((string) $objthirdparty->id);
296 }
297 $out .= (!empty($objcon->id) ? '&contactid='.urlencode($objcon->id) : '');
298 //$out.=$langs->trans("AddAnAction").' ';
299 //$out.=img_picto($langs->trans("AddAnAction"),'filenew');
300 //$out.="</a>";
301 }
302
303 $morehtmlright = '';
304
305 //$messagingUrl = DOL_URL_ROOT.'/societe/messaging.php?socid='.$object->id;
306 //$morehtmlright .= dolGetButtonTitle($langs->trans('ShowAsConversation'), '', 'fa fa-comments imgforviewmode', $messagingUrl, '', 1);
307 //$messagingUrl = DOL_URL_ROOT.'/societe/agenda.php?socid='.$object->id;
308 //$morehtmlright .= dolGetButtonTitle($langs->trans('MessageListViewType'), '', 'fa fa-bars imgforviewmode', $messagingUrl, '', 2);
309
310 if (isModEnabled('agenda')) {
311 if ($user->hasRight('agenda', 'myactions', 'create') || $user->hasRight('agenda', 'allactions', 'create')) {
312 $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out);
313 } else {
314 $morehtmlright .= dolGetButtonTitle($langs->trans('AddAction'), '', 'fa fa-plus-circle', DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out, '', 0);
315 }
316 }
317
318
319 if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
320 print '<br>';
321
322 $param = '&id='.$object->id;
323 if (!empty($contextpage) && $contextpage != getDolDefaultContextPage(__FILE__)) {
324 $param .= '&contextpage='.urlencode($contextpage);
325 }
326 if ($limit > 0 && $limit != $conf->liste_limit) {
327 $param .= '&limit='.((int) $limit);
328 }
329 if ($search_rowid) {
330 $param .= '&search_rowid='.urlencode($search_rowid);
331 }
332 if ($actioncode !== '' && $actioncode !== '-1') {
333 $param .= '&actioncode='.urlencode($actioncode);
334 }
335 if ($search_agenda_label) {
336 $param .= '&search_agenda_label='.urlencode($search_agenda_label);
337 }
338 if ($search_complete != '') {
339 $param .= '&search_complete='.urlencode($search_complete);
340 }
341 if ($search_filtert != '') {
342 $param .= '&search_filtert='.urlencode((string) $search_filtert);
343 }
344 if ($search_dateevent_start != '') {
345 $param .= '&dateevent_startyear='.GETPOSTINT('dateevent_startyear');
346 $param .= '&dateevent_startmonth='.GETPOSTINT('dateevent_startmonth');
347 $param .= '&dateevent_startday='.GETPOSTINT('dateevent_startday');
348 }
349 if ($search_dateevent_end != '') {
350 $param .= '&dateevent_endyear='.GETPOSTINT('dateevent_endyear');
351 $param .= '&dateevent_endmonth='.GETPOSTINT('dateevent_endmonth');
352 $param .= '&dateevent_endday='.GETPOSTINT('dateevent_endday');
353 }
354
355 // Try to know count of actioncomm from cache
356 $nbEvent = 0;
357 //require_once DOL_DOCUMENT_ROOT.'/core/lib/memory.lib.php';
358 //$cachekey = 'count_events_myobject_'.$object->id;
359 //$nbEvent = dol_getcache($cachekey);
360 $titlelist = $langs->trans("Actions").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
361 if (!empty($conf->dol_optimize_smallscreen)) {
362 $titlelist = $langs->trans("Actions").(is_numeric($nbEvent) ? '<span class="opacitymedium colorblack paddingleft">('.$nbEvent.')</span>' : '');
363 }
364
365 print_barre_liste($titlelist, 0, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', 0, -1, '', 0, $morehtmlright, '', 0, 1, 0);
366
367 // List of all actions
368 $filters = array();
369 $filters['search_agenda_label'] = $search_agenda_label;
370 $filters['search_rowid'] = $search_rowid;
371 $filters['search_complete'] = $search_complete; // Can be 'na', '0', '100', '50'
372 $filters['search_filtert'] = $search_filtert;
373
374 // TODO Replace this with the same code than into list.php
375 show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder, !empty($object->module) ? $object->module : '');
376 }
377}
378
379// End of page
380llxFooter();
381$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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:73
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Class for MyObject.
show_actions_done($conf, $langs, $db, $filterobj, $objcon=null, $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).
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTDATE($prefix, $hourTime='', $gm='auto', $saverestore='')
Helper function that combines values of a dolibarr DatePicker (such as Form\selectDate) for year,...
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
GETPOSTISARRAY($paramname, $method=0)
Return true if the parameter $paramname is submit from a POST OR GET as an array.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
getDolDefaultContextPage($s)
Return the default context page string.
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 a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
myobjectPrepareHead($object)
Prepare array of tabs for MyObject.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.