29require
'../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/eventorganization/class/conferenceorbooth.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/eventorganization/class/conferenceorboothattendee.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/eventorganization/lib/eventorganization_conferenceorbooth.lib.php';
39require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
40if (isModEnabled(
'category')) {
41 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
44global $dolibarr_main_url_root;
47$langs->loadLangs(array(
"eventorganization",
"other",
"projects",
"bills"));
50$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
51$massaction =
GETPOST(
'massaction',
'alpha');
53$confirm =
GETPOST(
'confirm',
'alpha');
54$cancel =
GETPOST(
'cancel',
'alpha');
55$toselect =
GETPOST(
'toselect',
'array');
56$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
57$backtopage =
GETPOST(
'backtopage',
'alpha');
58$optioncss =
GETPOST(
'optioncss',
'aZ');
62$conf_or_booth_id =
GETPOSTINT(
'conforboothid');
66$projectid = $fk_project;
72$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
73$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
75if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
79$offset = $limit * $page;
86$projectstatic =
new Project($db);
88$diroutputmassaction = $conf->eventorganization->dir_output.
'/temp/massgeneration/'.$user->id;
89$hookmanager->initHooks(array(
'conferenceorboothattendeelist'));
92$extrafields->fetch_name_optionals_label(
$object->table_element);
95$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
100 $sortfield =
"t.".key(
$object->fields);
107$search_all =
GETPOST(
'search_all',
'alphanohtml');
109foreach (
$object->fields as $key => $val) {
110 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
111 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
113 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
120$fieldstosearchall = array();
121foreach (
$object->fields as $key => $val) {
122 if (!empty($val[
'searchall'])) {
123 $fieldstosearchall[
't.'.$key] = $val[
'label'];
128$arrayfields = array();
129foreach (
$object->fields as $key => $val) {
131 if (!empty($val[
'visible'])) {
132 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
133 $arrayfields[
't.'.$key] = array(
134 'label' => $val[
'label'],
135 'checked' => (($visible < 0) ? 0 : 1),
136 'enabled' => (abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
137 'position' => $val[
'position'],
138 'help' => isset($val[
'help']) ? $val[
'help'] :
''
143include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
149$permissiontoread = $user->hasRight(
'eventorganization',
'read');
150$permissiontoadd = $user->hasRight(
'eventorganization',
'write');
151$permissiontodelete = $user->hasRight(
'eventorganization',
'delete');
154if (!isModEnabled(
'eventorganization')) {
158if ($user->socid > 0) {
163if (!$permissiontoread) {
172if (preg_match(
'/^set/', $action) && ($projectid > 0 || $projectref) && $user->hasRight(
'eventorganization',
'write')) {
174 $project_attr = preg_replace(
'/^set/',
'', $action);
175 if (array_key_exists($project_attr, $project->fields)) {
176 $result = $project->fetch($projectid, $projectref);
180 $projectid = $project->id;
181 $project->{$project_attr} =
GETPOST($project_attr);
182 $result = $project->update($user);
190if (
GETPOST(
'cancel',
'alpha')) {
194if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
198$parameters = array();
199$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
204if (empty($reshook)) {
206 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
209 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
210 foreach (
$object->fields as $key => $val) {
212 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
213 $search[$key.
'_dtstart'] =
'';
214 $search[$key.
'_dtend'] =
'';
218 $search_array_options = array();
220 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
221 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
226 $objectclass =
'ConferenceOrBoothAttendee';
227 $objectlabel =
'ConferenceOrBoothAttendee';
228 $uploaddir = $conf->eventorganization->dir_output;
229 include DOL_DOCUMENT_ROOT.
'/eventorganization/core/actions_massactions_mail.inc.php';
230 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
239$form =
new Form($db);
242$help_url =
"EN:Module_Event_Organization";
248if ($conf_or_booth_id > 0) {
249 $result = $confOrBooth->fetch($conf_or_booth_id);
253 $fk_project = $confOrBooth->fk_project;
257if ($fk_project > 0) {
258 $result = $projectstatic->fetch($fk_project);
268$sql .=
$object->getFieldList(
't');
270if (!empty($extrafields->attributes[
$object->table_element][
'label'])) {
271 foreach ($extrafields->attributes[
$object->table_element][
'label'] as $key => $val) {
272 $sql .= ($extrafields->attributes[
$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
276$parameters = array();
277$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
278$sql .= $hookmanager->resPrint;
279$sql = preg_replace(
'/,\s*$/',
'', $sql);
284$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
285if (!empty($confOrBooth->id)) {
286 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"actioncomm as a on a.id=t.fk_actioncomm AND a.id=".((int) $confOrBooth->id);
288if (isset($extrafields->attributes[
$object->table_element][
'label']) && is_array($extrafields->attributes[
$object->table_element][
'label']) && count($extrafields->attributes[
$object->table_element][
'label'])) {
289 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
292$parameters = array();
293$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
294$sql .= $hookmanager->resPrint;
295if (
$object->ismultientitymanaged == 1) {
296 $sql .=
" WHERE t.entity IN (".getEntity(
$object->element).
")";
298 $sql .=
" WHERE 1 = 1";
300if (!empty($projectstatic->id)) {
301 $sql .=
" AND t.fk_project = ".((int) $projectstatic->id);
303foreach ($search as $key => $val) {
304 if (array_key_exists($key,
$object->fields)) {
305 if ($key ==
'status' && $search[$key] == -1) {
309 if ((strpos(
$object->fields[$key][
'type'],
'integer:') === 0) || (strpos(
$object->fields[$key][
'type'],
'sellist:') === 0) || !empty(
$object->fields[$key][
'arrayofkeyval'])) {
310 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty(
$object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0',
$object->fields[$key][
'arrayofkeyval'])))) {
315 if ($search[$key] !=
'') {
316 $sql .=
natural_search($db->sanitize($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
319 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
320 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
321 if (preg_match(
'/^(date|timestamp|datetime)/',
$object->fields[$columnName][
'type'])) {
322 if (preg_match(
'/_dtstart$/', $key)) {
323 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
325 if (preg_match(
'/_dtend$/', $key)) {
326 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
333 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
337include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
339$parameters = array();
340$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
341$sql .= $hookmanager->resPrint;
344$nbtotalofrecords =
'';
347 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
348 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
349 $resql = $db->query($sqlforcount);
351 $objforcount = $db->fetch_object($resql);
352 $nbtotalofrecords = $objforcount->nbtotalofrecords;
357 if (($page * $limit) > $nbtotalofrecords) {
365$sql .= $db->order($sortfield, $sortorder);
367 $sql .= $db->plimit($limit + 1, $offset);
370$resql = $db->query($sql);
376$num = $db->num_rows($resql);
379if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
380 $obj = $db->fetch_object($resql);
382 header(
"Location: ".DOL_URL_ROOT.
'/eventorganization/conferenceorboothattendee_card.php?id='.((
int) $id));
386if ($confOrBooth->id > 0) {
387 $title = $langs->trans(
'ListOfAttendeesPerConference');
389 $title = $langs->trans(
'ListOfAttendeesOfEvent');
395llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'mod-eventorganization page-attendee-list classforhorizontalscrolloftabs');
399if ($projectstatic->id > 0 || $confOrBooth > 0) {
400 if (
getDolGlobalString(
'PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($projectstatic,
'fetchComments') && empty($projectstatic->comments)) {
401 $projectstatic->fetchComments();
403 if (!empty($projectstatic->socid)) {
404 $projectstatic->fetch_thirdparty();
407 $withProjectUrl =
'';
408 $object->project = clone $projectstatic;
410 if (!empty($withproject)) {
412 $tab =
'eventorganisation';
413 $withProjectUrl =
"&withproject=1";
416 print
dol_get_fiche_head($head, $tab, $langs->trans(
"Project"), -1, ($projectstatic->public ?
'projectpub' :
'project'), 0,
'',
'');
418 $param = ($mode ==
'mine' ?
'&mode=mine' :
'');
422 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
424 $morehtmlref =
'<div class="refidno">';
426 $morehtmlref .= $projectstatic->title;
428 if (!empty($projectstatic->thirdparty->id) && $projectstatic->thirdparty->id > 0) {
429 $morehtmlref .=
'<br>'.$projectstatic->thirdparty->getNomUrl(1,
'project');
431 $morehtmlref .=
'</div>';
434 if (!$user->hasRight(
'projet',
'all',
'lire')) {
435 $objectsListId = $projectstatic->getProjectsAuthorizedForUser($user, 0, 0);
436 $projectstatic->next_prev_filter =
"rowid IN (".$db->sanitize(count($objectsListId) ? implode(
',', array_keys($objectsListId)) :
'0').
")";
439 dol_banner_tab($projectstatic,
'project_ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
441 print
'<div class="fichecenter">';
442 print
'<div class="fichehalfleft">';
443 print
'<div class="underbanner clearboth"></div>';
445 print
'<table class="border tableforfield centpercent">';
449 print
'<tr><td class="tdtop">';
450 print $langs->trans(
"Usage");
454 print
'<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_opportunity ?
' checked="checked"' :
'')).
'"> ';
455 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
456 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
460 print
'<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_task ?
' checked="checked"' :
'')).
'"> ';
461 $htmltext = $langs->trans(
"ProjectFollowTasks");
462 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
466 print
'<input type="checkbox" disabled name="usage_bill_time"'.(GETPOSTISSET(
'usage_bill_time') ? (
GETPOST(
'usage_bill_time',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_bill_time ?
' checked="checked"' :
'')).
'"> ';
467 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
468 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
471 if (isModEnabled(
'eventorganization')) {
472 print
'<input type="checkbox" disabled name="usage_organize_event"'.(GETPOSTISSET(
'usage_organize_event') ? (
GETPOST(
'usage_organize_event',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_organize_event ?
' checked="checked"' :
'')).
'"> ';
473 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
474 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
480 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
481 if ($projectstatic->public == 0) {
482 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
483 print $langs->trans(
"PrivateProject");
485 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
486 print $langs->trans(
"SharedProject");
491 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
492 if (strcmp($projectstatic->budget_amount,
'')) {
493 print
'<span class="amount">'.price($projectstatic->budget_amount, 0, $langs, 1, 0, 0, $conf->currency).
'</span>';
498 print
'<tr><td>'.$langs->trans(
"Dates").
' ('.$langs->trans(
"Project").
')</td><td>';
500 print($start ? $start :
'?');
503 print($end ? $end :
'?');
504 if ($projectstatic->hasDelay()) {
510 print
'<tr><td>'.$langs->trans(
"Dates").
' ('.$langs->trans(
"Event").
')</td><td>';
512 print($start ? $start :
'?');
515 print($end ? $end :
'?');
516 if ($projectstatic->hasDelay()) {
522 print
'<tr><td>'.$langs->trans(
"Location").
'</td><td>';
523 print $projectstatic->location;
530 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
537 print
'<div class="fichehalfright">';
538 print
'<div class="underbanner clearboth"></div>';
540 print
'<table class="border tableforfield centpercent">';
543 print
'<td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td>';
548 if (isModEnabled(
'category')) {
549 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
550 print $form->showCategories($projectstatic->id,
'project', 1);
554 print
'<tr><td class="nowrap">';
555 $typeofdata =
'checkbox:'.($projectstatic->accept_conference_suggestions ?
' checked="checked"' :
'');
556 $htmltext = $langs->trans(
"AllowUnknownPeopleSuggestConfHelp");
557 print $form->editfieldkey(
'AllowUnknownPeopleSuggestConf',
'accept_conference_suggestions', $projectstatic->accept_conference_suggestions ? 1 : 0, $projectstatic, 0, $typeofdata,
'', 0, 0,
'projectid', $htmltext);
559 print $form->editfieldval(
'AllowUnknownPeopleSuggestConf',
'accept_conference_suggestions', $projectstatic->accept_conference_suggestions ? 1 : 0, $projectstatic, 0, $typeofdata,
'', null, 0,
'', 0,
'',
'projectid');
563 $typeofdata =
'checkbox:'.($projectstatic->accept_booth_suggestions ?
' checked="checked"' :
'');
564 $htmltext = $langs->trans(
"AllowUnknownPeopleSuggestBoothHelp");
565 print $form->editfieldkey(
'AllowUnknownPeopleSuggestBooth',
'accept_booth_suggestions', $projectstatic->accept_booth_suggestions ? 1 : 0, $projectstatic, 0, $typeofdata,
'', 0, 0,
'projectid', $htmltext);
567 print $form->editfieldval(
'AllowUnknownPeopleSuggestBooth',
'accept_booth_suggestions', $projectstatic->accept_booth_suggestions ? 1 : 0, $projectstatic, 0, $typeofdata,
'', null, 0,
'', 0,
'',
'projectid');
571 print $form->editfieldkey($form->textwithpicto($langs->trans(
'PriceOfBooth'), $langs->trans(
"PriceOfBoothHelp")),
'price_booth',
'', $projectstatic, 0,
'amount',
'', 0, 0,
'projectid');
573 print $form->editfieldval($form->textwithpicto($langs->trans(
'PriceOfBooth'), $langs->trans(
"PriceOfBoothHelp")),
'price_booth', $projectstatic->price_booth, $projectstatic, 0,
'amount',
'',
null, 0,
'', 0,
'',
'projectid');
577 print $form->editfieldkey($form->textwithpicto($langs->trans(
'PriceOfRegistration'), $langs->trans(
"PriceOfRegistrationHelp")),
'price_registration',
'', $projectstatic, 0,
'amount',
'', 0, 0,
'projectid');
579 print $form->editfieldval($form->textwithpicto($langs->trans(
'PriceOfRegistration'), $langs->trans(
"PriceOfRegistrationHelp")),
'price_registration', $projectstatic->price_registration, $projectstatic, 0,
'amount',
'',
null, 0,
'', 0,
'',
'projectid');
582 print
'<tr><td class="titlefield">';
583 print $form->editfieldkey($form->textwithpicto($langs->trans(
'MaxNbOfAttendees'),
''),
'max_attendees',
'', $projectstatic, $permissiontoadd,
'integer:3',
'&withproject=1', 0, 0,
'projectid');
584 print
'</td><td class="valuefield">';
585 print $form->editfieldval($form->textwithpicto($langs->trans(
'MaxNbOfAttendees'),
''),
'max_attendees', $projectstatic->max_attendees, $projectstatic, $permissiontoadd,
'integer:3',
'',
null, 0,
'&withproject=1', 0,
'',
'projectid');
589 print
'<tr><td class="titlefield valignmiddle">'.$langs->trans(
"EventOrganizationICSLinkProject").
'</td><td class="valuefield">';
591 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
592 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
595 $message =
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/agenda/agendaexport.php?format=ical'.($conf->entity > 1 ?
"&entity=".$conf->entity :
"");
596 $message .=
'&exportkey='.urlencode(
getDolGlobalString(
'MAIN_AGENDA_XCAL_EXPORTKEY',
'...'));
597 $message .=
"&project=".$projectid.
'&module='.urlencode(
'project@eventorganization').
'&output=file">'.$langs->trans(
'DownloadICSLink').img_picto(
'',
'download',
'class="paddingleft"').
'</a>';
601 print
'<tr><td valign="middle">'.$langs->trans(
"EventOrganizationICSLink").
'</td><td>';
603 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
604 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
607 $message =
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/agenda/agendaexport.php?format=ical'.($conf->entity > 1 ?
"&entity=".$conf->entity :
"");
608 $message .=
'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ? urlencode(
getDolGlobalString(
'MAIN_AGENDA_XCAL_EXPORTKEY')) :
'...');
609 $message .=
"&project=".$projectstatic->id.
'&module='.urlencode(
'conforbooth@eventorganization').
'&status='.ConferenceOrBooth::STATUS_CONFIRMED.
'&output=file">'.$langs->trans(
'DownloadICSLink').img_picto(
'',
'download',
'class="paddingleft"').
'</a>';
616 print $form->textwithpicto($langs->trans(
"SuggestOrVoteForConfOrBooth"), $langs->trans(
"EvntOrgRegistrationHelpMessage"));
619 $linksuggest = $dolibarr_main_url_root.
'/public/project/index.php?id='.$projectstatic->id;
620 $encodedsecurekey =
dol_hash(
getDolGlobalString(
"EVENTORGANIZATION_SECUREKEY").
'conferenceorbooth'.$projectstatic->id,
'md5');
621 $linksuggest .=
'&securekey='.urlencode($encodedsecurekey);
624 print
'<div class="tdoverflowmax200 inline-block valignmiddle"><a target="_blank" rel="noopener noreferrer" href="'.$linksuggest.
'" class="quatrevingtpercent">'.$linksuggest.
'</a></div>';
625 print
'<a target="_blank" rel="noopener noreferrer" href="'.$linksuggest.
'">'.
img_picto(
'',
'globe').
'</a>';
633 print $langs->trans(
"PublicAttendeeSubscriptionGlobalPage");
636 $link_subscription = $dolibarr_main_url_root.
'/public/eventorganization/attendee_new.php?id='.$projectstatic->id.
'&type=global';
637 $encodedsecurekey =
dol_hash(
getDolGlobalString(
"EVENTORGANIZATION_SECUREKEY").
'conferenceorbooth'.$projectstatic->id,
'md5');
638 $link_subscription .=
'&securekey='.urlencode($encodedsecurekey);
641 print
'<div class="tdoverflowmax200 inline-block valignmiddle"><a target="_blank" href="'.$link_subscription.
'" class="quatrevingtpercent">'.$link_subscription.
'</a></div>';
642 print
'<a target="_blank" rel="noopener noreferrer" href="'.$link_subscription.
'">'.
img_picto(
'',
'globe').
'</a>';
652 print
'<div class="clearboth"></div>';
656 if (empty($confOrBooth->id)) {
659 print
dol_get_fiche_head($head, $tab, $langs->trans(
"Project"), -1, (!empty($project->public) ?
'projectpub' :
'project'), 0,
'',
'reposition');
663 if ($confOrBooth->id > 0) {
671 dol_banner_tab($object,
'ref',
'', 0);
673 print
'<div class="fichecenter">';
674 print
'<div class="fichehalfleft">';
675 print
'<div class="underbanner clearboth"></div>';
676 print
'<table class="border centpercent tableforfield">' .
"\n";
678 include DOL_DOCUMENT_ROOT .
'/core/tpl/commonfields_view.tpl.php';
681 include DOL_DOCUMENT_ROOT .
'/core/tpl/extrafields_view.tpl.php';
687 print
'<div class="clearboth"></div>';
693$arrayofselected = is_array($toselect) ? $toselect : array();
697 $param .=
'&mode='.urlencode($mode);
699if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
700 $param .=
'&contextpage='.urlencode($contextpage);
702if ($limit > 0 && $limit != $conf->liste_limit) {
703 $param .=
'&limit='.((int) $limit);
705if ($optioncss !=
'') {
706 $param .=
'&optioncss='.urlencode($optioncss);
708foreach ($search as $key => $val) {
709 if (is_array($search[$key])) {
710 foreach ($search[$key] as $skey) {
712 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
715 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
716 $param .=
'&search_'.$key.
'month='.(
GETPOSTINT(
'search_'.$key.
'month'));
717 $param .=
'&search_'.$key.
'day='.(
GETPOSTINT(
'search_'.$key.
'day'));
718 $param .=
'&search_'.$key.
'year='.(
GETPOSTINT(
'search_'.$key.
'year'));
719 } elseif ($search[$key] !=
'') {
720 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
723if ($confOrBooth->id > 0) {
724 $param .=
'&conforboothid='.urlencode((
string) $confOrBooth->id);
726if ($projectstatic->id > 0) {
727 $param .=
'&fk_project='.urlencode((
string) ($projectstatic->id));
729$param .= $withProjectUrl;
732include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
734$parameters = array(
'param' => &$param);
735$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
736$param .= $hookmanager->resPrint;
739$arrayofmassactions = array(
743 'presend' =>
img_picto(
'',
'email',
'class="pictofixedwidth"').$langs->trans(
"SendByMail"),
745if (!empty($permissiontodelete)) {
746 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
748if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
749 $arrayofmassactions = array();
751$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
753print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].(!empty($conf_or_booth_id) ?
'?conforboothid='.$conf_or_booth_id :
'').
'">'.
"\n";
754if ($optioncss !=
'') {
755 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
757print
'<input type="hidden" name="token" value="'.newToken().
'">';
758print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
759print
'<input type="hidden" name="action" value="list">';
760print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
761print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
762print
'<input type="hidden" name="page" value="'.$page.
'">';
763print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
764print
'<input type="hidden" name="withproject" value="'.$withproject.
'">';
765print
'<input type="hidden" name="fk_project" value="'.$fk_project.
'">';
766print
'<input type="hidden" name="page_y" value="">';
767print
'<input type="hidden" name="mode" value="'.$mode.
'">';
769$params = array(
'morecss' =>
'reposition');
771$urlnew = DOL_URL_ROOT.
'/eventorganization/conferenceorboothattendee_card.php?action=create'.(!empty($confOrBooth->id) ?
'&conforboothid='.$confOrBooth->id :
'').(!empty($projectstatic->id) ?
'&fk_project='.$projectstatic->id :
'').$withProjectUrl.
'&backtopage='.urlencode($_SERVER[
'PHP_SELF'].
'?projectid='.$projectstatic->id.(empty($confOrBooth->id) ?
'' :
'&conforboothid='.$confOrBooth->id).$withProjectUrl);
774$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', $urlnew,
'', $permissiontoadd, $params);
776print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
$object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
780$topicmail = $projectstatic->title;
781$modelmail =
"conferenceorbooth";
783$trackid =
'conferenceorbooth_'.$object->id;
784$withmaindocfilemail = 0;
785include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
790 foreach ($fieldstosearchall as $key => $val) {
791 $fieldstosearchall[$key] = $langs->trans($val);
792 $setupstring .= $key.
"=".$val.
";";
794 print
'<!-- Search done like if CONFERENCEORBOOTHATTENDEE_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
795 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).implode(
', ', $fieldstosearchall).
'</div>';
803$parameters = array();
804$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
805if (empty($reshook)) {
806 $moreforfilter .= $hookmanager->resPrint;
808 $moreforfilter = $hookmanager->resPrint;
811if (!empty($moreforfilter)) {
812 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
813 print $moreforfilter;
817$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
818$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
819$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
820$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
823print
'<div class="div-table-responsive">';
824print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
829print
'<tr class="liste_titre_filter">';
832 print
'<td class="liste_titre center maxwidthsearch">';
833 $searchpicto = $form->showFilterButtons(
'left');
837foreach (
$object->fields as $key => $val) {
838 $searchkey = empty($search[$key]) ?
'' : $search[$key];
839 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
840 if ($key ==
'status') {
841 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
842 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
843 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
844 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
845 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
846 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
847 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
849 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
850 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
851 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
852 print $form->selectarray(
'search_'.$key, $val[
'arrayofkeyval'], (isset($search[$key]) ? $search[$key] :
''), $val[
'notnull'], 0, 0,
'', 1, 0, 0,
'',
'maxwidth100'.($key ==
'status' ?
' search_status width100 onrightofpage' :
''), 1);
853 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
854 print
$object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
855 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
856 print
'<div class="nowrap">';
857 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
859 print
'<div class="nowrap">';
860 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
862 } elseif ($key ==
'lang') {
863 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
865 print $formadmin->select_language($search[$key],
'search_lang', 0,
null, 1, 0, 0,
'minwidth100imp maxwidth125', 2);
867 print
'<input type="text" class="flat maxwidth'.($val[
'type'] ==
'integer' ?
'50' :
'75').
'" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
873include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
876$parameters = array(
'arrayfields' => $arrayfields);
877$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
878print $hookmanager->resPrint;
881 print
'<td class="liste_titre center maxwidthsearch">';
882 $searchpicto = $form->showFilterButtons();
888$totalarray = array();
889$totalarray[
'nbfield'] = 0;
893print
'<tr class="liste_titre">';
896 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
897 $totalarray[
'nbfield']++;
899foreach (
$object->fields as $key => $val) {
900 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
901 if ($key ==
'status') {
902 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
903 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
904 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
905 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
906 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
907 } elseif (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && $val[
'label'] !=
'TechnicalID' && empty($val[
'arrayofkeyval'])) {
908 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
910 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
911 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
912 print
getTitleFieldOfList($arrayfields[
't.'.$key][
'label'], 0, $_SERVER[
'PHP_SELF'],
't.'.$key,
'', $param, ($cssforfield ?
'class="'.$cssforfield.
'"' :
''), $sortfield, $sortorder, ($cssforfield ? $cssforfield.
' ' :
''), 0, (empty($val[
'helplist']) ?
'' : $val[
'helplist'])).
"\n";
913 $totalarray[
'nbfield']++;
917include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
919$parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder,
'totalarray' => &$totalarray);
920$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
921print $hookmanager->resPrint;
924 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
925 $totalarray[
'nbfield']++;
931$needToFetchEachLine = 0;
932if (isset($extrafields->attributes[
$object->table_element][
'computed']) && is_array($extrafields->attributes[
$object->table_element][
'computed']) && count($extrafields->attributes[
$object->table_element][
'computed']) > 0) {
933 foreach ($extrafields->attributes[
$object->table_element][
'computed'] as $key => $val) {
934 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
935 $needToFetchEachLine++;
944$savnbfield = $totalarray[
'nbfield'];
945$totalarray = array();
946$totalarray[
'nbfield'] = 0;
947$imaxinloop = ($limit ? min($num, $limit) : $num);
948while ($i < $imaxinloop) {
949 $obj = $db->fetch_object($resql);
955 $object->setVarsFromFetchObj($obj);
957 if ($mode ==
'kanban') {
959 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
960 print
'<div class="box-flex-container kanban">';
964 if ($massactionbutton || $massaction) {
966 if (in_array(
$object->id, $arrayofselected)) {
970 print
$object->getKanbanView(
'', array(
'selected' => $selected));
971 if ($i == ($imaxinloop - 1)) {
978 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
981 print
'<td class="nowrap center">';
982 if ($massactionbutton || $massaction) {
984 if (in_array(
$object->id, $arrayofselected)) {
987 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
991 $totalarray[
'nbfield']++;
994 foreach (
$object->fields as $key => $val) {
995 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
996 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
997 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
998 } elseif ($key ==
'status') {
999 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
1002 if (in_array($val[
'type'], array(
'timestamp'))) {
1003 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
1004 } elseif ($key ==
'ref') {
1005 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
1008 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'id',
'rowid',
'ref',
'status')) && empty($val[
'arrayofkeyval'])) {
1009 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
1013 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
1014 print
'<td'.($cssforfield ?
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ?
' classfortooltip' :
'').
'"' :
'');
1015 if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric(
$object->$key)) {
1016 print
' title="'.dol_escape_htmltag(
$object->$key).
'"';
1019 if ($key ==
'status') {
1020 print
$object->getLibStatut(5);
1021 } elseif ($key ==
'ref') {
1022 $optionLink = (!empty($withproject) ?
'conforboothidproject' :
'conforboothid');
1023 if (empty($confOrBooth->id)) {
1024 $optionLink =
'projectid';
1026 print
$object->getNomUrl(1, $optionLink);
1032 $totalarray[
'nbfield']++;
1034 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
1036 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
1038 if (!isset($totalarray[
'val'])) {
1039 $totalarray[
'val'] = array();
1041 if (!isset($totalarray[
'val'][
't.'.$key])) {
1042 $totalarray[
'val'][
't.'.$key] = 0;
1044 $totalarray[
'val'][
't.'.$key] +=
$object->$key;
1049 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
1051 $parameters = array(
'arrayfields' => $arrayfields,
'object' => $object,
'obj' => $obj,
'i' => $i,
'totalarray' => &$totalarray);
1052 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
1053 print $hookmanager->resPrint;
1056 print
'<td class="nowrap center">';
1057 if ($massactionbutton || $massaction) {
1059 if (in_array(
$object->id, $arrayofselected)) {
1062 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.
$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1066 $totalarray[
'nbfield']++;
1077include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
1082 foreach ($arrayfields as $key => $val) {
1083 if (!empty($val[
'checked'])) {
1087 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
1093$parameters = array(
'arrayfields' => $arrayfields,
'sql' => $sql);
1094$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
1095print $hookmanager->resPrint;
1097print
'</table>'.
"\n";
1100print
'</form>'.
"\n";
1102if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
1103 $hidegeneratedfilelistifempty = 1;
1104 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
1105 $hidegeneratedfilelistifempty = 0;
1108 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
1112 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
1113 $urlsource .= str_replace(
'&',
'&', $param);
1115 $filedir = $diroutputmassaction;
1116 $genallowed = $permissiontoread;
1117 $delallowed = $permissiontoadd;
1119 print $formfile->showdocuments(
'massfilesarea_eventorganization',
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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.
Class for ConferenceOrBoothAttendee.
Class for ConferenceOrBooth.
Class to manage projects.
conferenceorboothPrepareHead($object, $with_project=0)
Prepare array of tabs for ConferenceOrBooth.
conferenceorboothProjectPrepareHead($object)
Prepare array of tabs for ConferenceOrBooth Project tab.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
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.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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)
Show tabs of a record.
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.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
project_prepare_head(Project $project, $moreparam='')
Prepare array with list of tabs.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
dol_hash($chain, $type='0', $nosalt=0)
Returns a hash (non reversible encryption) of a string.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.