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