27require
'../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/eventorganization/class/conferenceorbooth.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/eventorganization/class/conferenceorboothattendee.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/eventorganization/lib/eventorganization_conferenceorbooth.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
38if (isModEnabled(
'categorie')) {
39 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
42global $dolibarr_main_url_root;
45$langs->loadLangs(array(
"eventorganization",
"other",
"projects",
"bills"));
48$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
49$massaction =
GETPOST(
'massaction',
'alpha');
50$show_files =
GETPOST(
'show_files',
'int');
51$confirm =
GETPOST(
'confirm',
'alpha');
52$cancel =
GETPOST(
'cancel',
'alpha');
53$toselect =
GETPOST(
'toselect',
'array');
54$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
55$backtopage =
GETPOST(
'backtopage',
'alpha');
56$optioncss =
GETPOST(
'optioncss',
'aZ');
60$conf_or_booth_id =
GETPOST(
'conforboothid',
'int');
62$withproject =
GETPOST(
'withproject',
'int');
63$fk_project =
GETPOST(
'fk_project',
'int') ?
GETPOST(
'fk_project',
'int') :
GETPOST(
'projectid',
'int');
64$projectid = $fk_project;
69$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
70$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
71$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
72$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
73if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
77$offset = $limit * $page;
84$projectstatic =
new Project($db);
85$diroutputmassaction = $conf->eventorganization->dir_output.
'/temp/massgeneration/'.$user->id;
86$hookmanager->initHooks(array(
'conferenceorboothattendeelist'));
89$extrafields->fetch_name_optionals_label($object->table_element);
92$search_array_options = $extrafields->getOptionalsFromPost($object->table_element,
'',
'search_');
96 reset($object->fields);
97 $sortfield =
"t.".key($object->fields);
104$search_all =
GETPOST(
'search_all',
'alphanohtml');
106foreach ($object->fields as $key => $val) {
107 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
108 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
110 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
111 $search[$key.
'_dtstart'] =
dol_mktime(0, 0, 0,
GETPOST(
'search_'.$key.
'_dtstartmonth',
'int'),
GETPOST(
'search_'.$key.
'_dtstartday',
'int'),
GETPOST(
'search_'.$key.
'_dtstartyear',
'int'));
112 $search[$key.
'_dtend'] =
dol_mktime(23, 59, 59,
GETPOST(
'search_'.$key.
'_dtendmonth',
'int'),
GETPOST(
'search_'.$key.
'_dtendday',
'int'),
GETPOST(
'search_'.$key.
'_dtendyear',
'int'));
117$fieldstosearchall = array();
118foreach ($object->fields as $key => $val) {
119 if (!empty($val[
'searchall'])) {
120 $fieldstosearchall[
't.'.$key] = $val[
'label'];
125$arrayfields = array();
126foreach ($object->fields as $key => $val) {
128 if (!empty($val[
'visible'])) {
129 $visible = (int)
dol_eval($val[
'visible'], 1);
130 $arrayfields[
't.'.$key] = array(
131 'label'=>$val[
'label'],
132 'checked'=>(($visible < 0) ? 0 : 1),
133 'enabled'=>(abs($visible) != 3 &&
dol_eval($val[
'enabled'], 1)),
134 'position'=>$val[
'position'],
135 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
140include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
146$permissiontoread = $user->rights->eventorganization->read;
147$permissiontoadd = $user->rights->eventorganization->write;
148$permissiontodelete = $user->rights->eventorganization->delete;
151if (empty($conf->eventorganization->enabled)) {
155if ($user->socid > 0) {
160if (!$permissiontoread) {
169if (preg_match(
'/^set/', $action) && $projectid > 0 && $user->hasRight(
'eventorganization',
'write')) {
172 $project_attr=preg_replace(
'/^set/',
'', $action);
173 if (array_key_exists($project_attr, $project->fields)) {
174 $result = $project->fetch($projectid);
178 $project->{$project_attr}=
GETPOST($project_attr);
179 $result=$project->update($user);
187if (
GETPOST(
'cancel',
'alpha')) {
191if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
195$parameters = array();
196$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
201if (empty($reshook)) {
203 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
206 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
207 foreach ($object->fields as $key => $val) {
209 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
210 $search[$key.
'_dtstart'] =
'';
211 $search[$key.
'_dtend'] =
'';
215 $search_array_options = array();
217 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
218 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
223 $objectclass =
'ConferenceOrBoothAttendee';
224 $objectlabel =
'ConferenceOrBoothAttendee';
225 $uploaddir = $conf->eventorganization->dir_output;
226 include DOL_DOCUMENT_ROOT.
'/eventorganization/core/actions_massactions_mail.inc.php';
227 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
236$form =
new Form($db);
245if ($conf_or_booth_id > 0) {
246 $result = $confOrBooth->fetch($conf_or_booth_id);
250 $fk_project = $confOrBooth->fk_project;
254if ($fk_project > 0) {
255 $result = $projectstatic->fetch($fk_project);
265$sql .= $object->getFieldList(
't');
267if (!empty($extrafields->attributes[$object->table_element][
'label'])) {
268 foreach ($extrafields->attributes[$object->table_element][
'label'] as $key => $val) {
269 $sql .= ($extrafields->attributes[$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
273$parameters = array();
274$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
275$sql .= $hookmanager->resPrint;
276$sql = preg_replace(
'/,\s*$/',
'', $sql);
281$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
282if (!empty($confOrBooth->id)) {
283 $sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"actioncomm as a on a.id=t.fk_actioncomm AND a.id=".((int) $confOrBooth->id);
285if (isset($extrafields->attributes[$object->table_element][
'label']) && is_array($extrafields->attributes[$object->table_element][
'label']) && count($extrafields->attributes[$object->table_element][
'label'])) {
286 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.rowid = ef.fk_object)";
289$parameters = array();
290$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
291$sql .= $hookmanager->resPrint;
292if ($object->ismultientitymanaged == 1) {
293 $sql .=
" WHERE t.entity IN (".getEntity($object->element).
")";
295 $sql .=
" WHERE 1 = 1";
297if (!empty($projectstatic->id)) {
298 $sql .=
" AND t.fk_project = ".((int) $projectstatic->id);
300foreach ($search as $key => $val) {
301 if (array_key_exists($key, $object->fields)) {
302 if ($key ==
'status' && $search[$key] == -1) {
305 $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
306 if ((strpos($object->fields[$key][
'type'],
'integer:') === 0) || (strpos($object->fields[$key][
'type'],
'sellist:') === 0) || !empty($object->fields[$key][
'arrayofkeyval'])) {
307 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0', $object->fields[$key][
'arrayofkeyval'])))) {
312 if ($search[$key] !=
'') {
313 $sql .=
natural_search($key, $search[$key], (($key ==
'status') ? 2 : $mode_search));
316 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
317 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
318 if (preg_match(
'/^(date|timestamp|datetime)/', $object->fields[$columnName][
'type'])) {
319 if (preg_match(
'/_dtstart$/', $key)) {
320 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
322 if (preg_match(
'/_dtend$/', $key)) {
323 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
330 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
334include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
336$parameters = array();
337$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
338$sql .= $hookmanager->resPrint;
342$nbtotalofrecords =
'';
345 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
346 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
347 $resql = $db->query($sqlforcount);
349 $objforcount = $db->fetch_object($resql);
350 $nbtotalofrecords = $objforcount->nbtotalofrecords;
355 if (($page * $limit) > $nbtotalofrecords) {
363$sql .= $db->order($sortfield, $sortorder);
365 $sql .= $db->plimit($limit + 1, $offset);
368$resql = $db->query($sql);
374$num = $db->num_rows($resql);
377if ($num == 1 &&
getDolGlobalString(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
378 $obj = $db->fetch_object($resql);
380 header(
"Location: ".DOL_URL_ROOT.
'/eventorganization/conferenceorboothattendee_card.php?id='.((
int) $id));
384if ($confOrBooth->id > 0) {
385 $title = $langs->trans(
'ListOfAttendeesPerConference');
387 $title = $langs->trans(
'ListOfAttendeesOfEvent');
393llxHeader(
'', $title, $help_url,
'', 0, 0, $morejs, $morecss,
'',
'classforhorizontalscrolloftabs');
397if ($projectstatic->id > 0 || $confOrBooth > 0) {
398 if (
getDolGlobalString(
'PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($projectstatic,
'fetchComments') && empty($projectstatic->comments)) {
399 $projectstatic->fetchComments();
401 if (!empty($projectstatic->socid)) {
402 $projectstatic->fetch_thirdparty();
406 $object->project = clone $projectstatic;
408 if (!empty($withproject)) {
410 $tab =
'eventorganisation';
411 $withProjectUrl =
"&withproject=1";
414 print
dol_get_fiche_head($head, $tab, $langs->trans(
"Project"), -1, ($projectstatic->public ?
'projectpub' :
'project'), 0,
'',
'');
416 $param = ($mode ==
'mine' ?
'&mode=mine' :
'');
420 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
422 $morehtmlref =
'<div class="refidno">';
424 $morehtmlref .= $projectstatic->title;
426 if (!empty($projectstatic->thirdparty->id) && $projectstatic->thirdparty->id > 0) {
427 $morehtmlref .=
'<br>'.$projectstatic->thirdparty->getNomUrl(1,
'project');
429 $morehtmlref .=
'</div>';
432 if (!$user->hasRight(
'projet',
'all',
'lire')) {
433 $objectsListId = $projectstatic->getProjectsAuthorizedForUser($user, 0, 0);
434 $projectstatic->next_prev_filter =
"rowid IN (".$db->sanitize(count($objectsListId) ? join(
',', array_keys($objectsListId)) :
'0').
")";
437 dol_banner_tab($projectstatic,
'project_ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
439 print
'<div class="fichecenter">';
440 print
'<div class="fichehalfleft">';
441 print
'<div class="underbanner clearboth"></div>';
443 print
'<table class="border tableforfield centpercent">';
447 print
'<tr><td class="tdtop">';
448 print $langs->trans(
"Usage");
452 print
'<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_opportunity ?
' checked="checked"' :
'')).
'"> ';
453 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
454 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
458 print
'<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : ($projectstatic->usage_task ?
' checked="checked"' :
'')).
'"> ';
459 $htmltext = $langs->trans(
"ProjectFollowTasks");
460 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
464 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"' :
'')).
'"> ';
465 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
466 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
469 if (isModEnabled(
'eventorganization')) {
470 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"' :
'')).
'"> ';
471 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
472 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
478 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
479 if ($projectstatic->public == 0) {
480 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
481 print $langs->trans(
"PrivateProject");
483 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
484 print $langs->trans(
"SharedProject");
489 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
490 if (strcmp($projectstatic->budget_amount,
'')) {
491 print
'<span class="amount">'.price($projectstatic->budget_amount,
'', $langs, 1, 0, 0, $conf->currency).
'</span>';
496 print
'<tr><td>'.$langs->trans(
"Dates").
' ('.$langs->trans(
"Project").
')</td><td>';
498 print($start ? $start :
'?');
501 print($end ? $end :
'?');
502 if ($projectstatic->hasDelay()) {
508 print
'<tr><td>'.$langs->trans(
"Dates").
' ('.$langs->trans(
"Event").
')</td><td>';
510 print($start ? $start :
'?');
513 print($end ? $end :
'?');
514 if ($projectstatic->hasDelay()) {
520 print
'<tr><td>'.$langs->trans(
"Location").
'</td><td>';
521 print $projectstatic->location;
526 $objectconf = $object;
527 $object = $projectstatic;
528 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
529 $object = $objectconf;
535 print
'<div class="fichehalfright">';
536 print
'<div class="underbanner clearboth"></div>';
538 print
'<table class="border tableforfield centpercent">';
541 print
'<td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td>';
546 if (isModEnabled(
'categorie')) {
547 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
548 print $form->showCategories($projectstatic->id,
'project', 1);
552 print
'<tr><td class="nowrap">';
553 $typeofdata =
'checkbox:'.($projectstatic->accept_conference_suggestions ?
' checked="checked"' :
'');
554 $htmltext = $langs->trans(
"AllowUnknownPeopleSuggestConfHelp");
555 print $form->editfieldkey(
'AllowUnknownPeopleSuggestConf',
'accept_conference_suggestions',
'', $projectstatic, 0, $typeofdata,
'', 0, 0,
'projectid', $htmltext);
557 print $form->editfieldval(
'AllowUnknownPeopleSuggestConf',
'accept_conference_suggestions',
'1', $projectstatic, 0, $typeofdata,
'', 0, 0,
'', 0,
'',
'projectid');
561 $typeofdata =
'checkbox:'.($projectstatic->accept_booth_suggestions ?
' checked="checked"' :
'');
562 $htmltext = $langs->trans(
"AllowUnknownPeopleSuggestBoothHelp");
563 print $form->editfieldkey(
'AllowUnknownPeopleSuggestBooth',
'accept_booth_suggestions',
'', $projectstatic, 0, $typeofdata,
'', 0, 0,
'projectid', $htmltext);
565 print $form->editfieldval(
'AllowUnknownPeopleSuggestBooth',
'accept_booth_suggestions',
'1', $projectstatic, 0, $typeofdata,
'', 0, 0,
'', 0,
'',
'projectid');
569 print $form->editfieldkey($form->textwithpicto($langs->trans(
'PriceOfBooth'), $langs->trans(
"PriceOfBoothHelp")),
'price_booth',
'', $projectstatic, 0,
'amount',
'', 0, 0,
'projectid');
571 print $form->editfieldval($form->textwithpicto($langs->trans(
'PriceOfBooth'), $langs->trans(
"PriceOfBoothHelp")),
'price_booth', $projectstatic->price_booth, $projectstatic, 0,
'amount',
'', 0, 0,
'', 0,
'',
'projectid');
575 print $form->editfieldkey($form->textwithpicto($langs->trans(
'PriceOfRegistration'), $langs->trans(
"PriceOfRegistrationHelp")),
'price_registration',
'', $projectstatic, 0,
'amount',
'', 0, 0,
'projectid');
577 print $form->editfieldval($form->textwithpicto($langs->trans(
'PriceOfRegistration'), $langs->trans(
"PriceOfRegistrationHelp")),
'price_registration', $projectstatic->price_registration, $projectstatic, 0,
'amount',
'', 0, 0,
'', 0,
'',
'projectid');
580 print
'<tr><td class="titlefield">';
581 print $form->editfieldkey($form->textwithpicto($langs->trans(
'MaxNbOfAttendees'),
''),
'max_attendees',
'', $projectstatic, $permissiontoadd,
'integer:3',
'&withproject=1', 0, 0,
'projectid');
582 print
'</td><td class="valuefield">';
583 print $form->editfieldval($form->textwithpicto($langs->trans(
'MaxNbOfAttendees'),
''),
'max_attendees', $projectstatic->max_attendees, $projectstatic, $permissiontoadd,
'integer:3',
'', 0, 0,
'&withproject=1', 0,
'',
'projectid');
586 print
'<tr><td valign="middle">'.$langs->trans(
"EventOrganizationICSLink").
'</td><td>';
588 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
589 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
592 $message =
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/agenda/agendaexport.php?format=ical'.($conf->entity > 1 ?
"&entity=".$conf->entity :
"");
593 $message .=
'&exportkey='.($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY ? urlencode($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY) :
'...');
594 $message .=
"&project=".$projectstatic->id.
'&module='.urlencode(
'@eventorganization').
'&status='.ConferenceOrBooth::STATUS_CONFIRMED.
'">'.$langs->trans(
'DownloadICSLink').img_picto(
'',
'download',
'class="paddingleft"').
'</a>';
601 print $form->textwithpicto($langs->trans(
"SuggestOrVoteForConfOrBooth"), $langs->trans(
"EvntOrgRegistrationHelpMessage"));
604 $linksuggest = $dolibarr_main_url_root.
'/public/project/index.php?id='.$projectstatic->id;
605 $encodedsecurekey =
dol_hash(
getDolGlobalString(
"EVENTORGANIZATION_SECUREKEY").
'conferenceorbooth'.$projectstatic->id,
'md5');
606 $linksuggest .=
'&securekey='.urlencode($encodedsecurekey);
609 print
'<div class="tdoverflowmax200 inline-block valignmiddle"><a target="_blank" rel="noopener noreferrer" href="'.$linksuggest.
'" class="quatrevingtpercent">'.$linksuggest.
'</a></div>';
610 print
'<a target="_blank" rel="noopener noreferrer" href="'.$linksuggest.
'">'.
img_picto(
'',
'globe').
'</a>';
618 print $langs->trans(
"PublicAttendeeSubscriptionGlobalPage");
621 $link_subscription = $dolibarr_main_url_root.
'/public/eventorganization/attendee_new.php?id='.$projectstatic->id.
'&type=global';
622 $encodedsecurekey =
dol_hash(
getDolGlobalString(
"EVENTORGANIZATION_SECUREKEY").
'conferenceorbooth'.$projectstatic->id,
'md5');
623 $link_subscription .=
'&securekey='.urlencode($encodedsecurekey);
626 print
'<div class="tdoverflowmax200 inline-block valignmiddle"><a target="_blank" href="'.$link_subscription.
'" class="quatrevingtpercent">'.$link_subscription.
'</a></div>';
627 print
'<a target="_blank" rel="noopener noreferrer" href="'.$link_subscription.
'">'.
img_picto(
'',
'globe').
'</a>';
637 print
'<div class="clearboth"></div>';
641 if (empty($confOrBooth->id)) {
644 print
dol_get_fiche_head($head, $tab, $langs->trans(
"Project"), -1, (!empty($project->public) ?
'projectpub' :
'project'), 0,
'',
'reposition');
648 if ($confOrBooth->id > 0) {
651 print
dol_get_fiche_head($head,
'attendees', $langs->trans(
"ConferenceOrBooth"), -1, $object->picto);
653 $object_evt = $object;
654 $object = $confOrBooth;
658 print
'<div class="fichecenter">';
659 print
'<div class="fichehalfleft">';
660 print
'<div class="underbanner clearboth"></div>';
661 print
'<table class="border centpercent tableforfield">' .
"\n";
663 include DOL_DOCUMENT_ROOT .
'/core/tpl/commonfields_view.tpl.php';
666 include DOL_DOCUMENT_ROOT .
'/core/tpl/extrafields_view.tpl.php';
667 $object = $object_evt;
672 print
'<div class="clearboth"></div>';
678$arrayofselected = is_array($toselect) ? $toselect : array();
682 $param .=
'&mode='.urlencode($mode);
684if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
685 $param .=
'&contextpage='.urlencode($contextpage);
687if ($limit > 0 && $limit != $conf->liste_limit) {
688 $param .=
'&limit='.((int) $limit);
690if ($optioncss !=
'') {
691 $param .=
'&optioncss='.urlencode($optioncss);
693foreach ($search as $key => $val) {
694 if (is_array($search[$key])) {
695 foreach ($search[$key] as $skey) {
697 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
700 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
701 $param .=
'&search_'.$key.
'month='.((int)
GETPOST(
'search_'.$key.
'month',
'int'));
702 $param .=
'&search_'.$key.
'day='.((int)
GETPOST(
'search_'.$key.
'day',
'int'));
703 $param .=
'&search_'.$key.
'year='.((int)
GETPOST(
'search_'.$key.
'year',
'int'));
704 } elseif ($search[$key] !=
'') {
705 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
708if ($confOrBooth->id > 0) {
709 $param .=
'&conforboothid='.urlencode($confOrBooth->id);
711if ($projectstatic->id > 0) {
712 $param .=
'&fk_project='.urlencode($projectstatic->id);
714$param .= $withProjectUrl;
717include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
719$parameters = array(
'param' => &$param);
720$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
721$param .= $hookmanager->resPrint;
724$arrayofmassactions = array(
728 'presend'=>
img_picto(
'',
'email',
'class="pictofixedwidth"').$langs->trans(
"SendByMail"),
730if (!empty($permissiontodelete)) {
731 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
733if (
GETPOST(
'nomassaction',
'int') || in_array($massaction, array(
'presend',
'predelete'))) {
734 $arrayofmassactions = array();
736$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
738print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].(!empty($conf_or_booth_id) ?
'?conforboothid='.$conf_or_booth_id :
'').
'">'.
"\n";
739if ($optioncss !=
'') {
740 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
742print
'<input type="hidden" name="token" value="'.newToken().
'">';
743print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
744print
'<input type="hidden" name="action" value="list">';
745print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
746print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
747print
'<input type="hidden" name="page" value="'.$page.
'">';
748print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
749print
'<input type="hidden" name="withproject" value="'.$withproject.
'">';
750print
'<input type="hidden" name="fk_project" value="'.$fk_project.
'">';
751print
'<input type="hidden" name="page_y" value="">';
752print
'<input type="hidden" name="mode" value="'.$mode.
'">';
754$params = array(
'morecss'=>
'reposition');
756$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);
759$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', $urlnew,
'', $permissiontoadd, $params);
761print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, $object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
765$topicmail = $projectstatic->title;
766$modelmail =
"conferenceorbooth";
768$trackid =
'conferenceorbooth_'.$object->id;
769$withmaindocfilemail = 0;
770include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
775 foreach ($fieldstosearchall as $key => $val) {
776 $fieldstosearchall[$key] = $langs->trans($val);
777 $setupstring .= $key.
"=".$val.
";";
779 print
'<!-- Search done like if CONFERENCEORBOOTHATTENDEE_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
780 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).join(
', ', $fieldstosearchall).
'</div>';
788$parameters = array();
789$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
790if (empty($reshook)) {
791 $moreforfilter .= $hookmanager->resPrint;
793 $moreforfilter = $hookmanager->resPrint;
796if (!empty($moreforfilter)) {
797 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
798 print $moreforfilter;
799 $parameters = array();
800 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
801 print $hookmanager->resPrint;
805$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
806$selectedfields = ($mode !=
'kanban' ? $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN',
'')) :
'');
807$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
809print
'<div class="div-table-responsive">';
810print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
815print
'<tr class="liste_titre_filter">';
818 print
'<td class="liste_titre center maxwidthsearch">';
819 $searchpicto = $form->showFilterButtons(
'left');
823foreach ($object->fields as $key => $val) {
824 $searchkey = empty($search[$key]) ?
'' : $search[$key];
825 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
826 if ($key ==
'status') {
827 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
828 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
829 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
830 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
831 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
832 } 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'])) {
833 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
835 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
836 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
837 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
838 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);
839 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
840 print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
841 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
842 print
'<div class="nowrap">';
843 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
845 print
'<div class="nowrap">';
846 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
848 } elseif ($key ==
'lang') {
849 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
851 print $formadmin->select_language($search[$key],
'search_lang', 0,
null, 1, 0, 0,
'minwidth150 maxwidth200', 2);
853 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
859include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
862$parameters = array(
'arrayfields'=>$arrayfields);
863$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
864print $hookmanager->resPrint;
867 print
'<td class="liste_titre center maxwidthsearch">';
868 $searchpicto = $form->showFilterButtons();
874$totalarray = array();
875$totalarray[
'nbfield'] = 0;
879print
'<tr class="liste_titre">';
882 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
883 $totalarray[
'nbfield']++;
885foreach ($object->fields as $key => $val) {
886 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
887 if ($key ==
'status') {
888 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
889 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
890 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
891 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
892 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
893 } 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'])) {
894 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
896 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
897 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
898 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";
899 $totalarray[
'nbfield']++;
903include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
905$parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder,
'totalarray'=>&$totalarray);
906$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
907print $hookmanager->resPrint;
910 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
911 $totalarray[
'nbfield']++;
917$needToFetchEachLine = 0;
918if (isset($extrafields->attributes[$object->table_element][
'computed']) && is_array($extrafields->attributes[$object->table_element][
'computed']) && count($extrafields->attributes[$object->table_element][
'computed']) > 0) {
919 foreach ($extrafields->attributes[$object->table_element][
'computed'] as $key => $val) {
920 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
921 $needToFetchEachLine++;
930$savnbfield = $totalarray[
'nbfield'];
931$totalarray = array();
932$totalarray[
'nbfield'] = 0;
933$imaxinloop = ($limit ? min($num, $limit) : $num);
934while ($i < $imaxinloop) {
935 $obj = $db->fetch_object($resql);
941 $object->setVarsFromFetchObj($obj);
943 if ($mode ==
'kanban') {
945 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
946 print
'<div class="box-flex-container kanban">';
950 if ($massactionbutton || $massaction) {
952 if (in_array($object->id, $arrayofselected)) {
956 print $object->getKanbanView(
'', array(
'selected' => $selected));
957 if ($i == ($imaxinloop - 1)) {
964 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
967 print
'<td class="nowrap center">';
968 if ($massactionbutton || $massaction) {
970 if (in_array($object->id, $arrayofselected)) {
973 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
977 $totalarray[
'nbfield']++;
980 foreach ($object->fields as $key => $val) {
981 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
982 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
983 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
984 } elseif ($key ==
'status') {
985 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
988 if (in_array($val[
'type'], array(
'timestamp'))) {
989 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
990 } elseif ($key ==
'ref') {
991 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
994 if (in_array($val[
'type'], array(
'double(24,8)',
'double(6,3)',
'integer',
'real',
'price')) && !in_array($key, array(
'rowid',
'status')) && empty($val[
'arrayofkeyval'])) {
995 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
999 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
1000 print
'<td'.($cssforfield ?
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ?
' classfortooltip' :
'').
'"' :
'');
1001 if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric($object->$key)) {
1002 print
' title="'.dol_escape_htmltag($object->$key).
'"';
1005 if ($key ==
'status') {
1006 print $object->getLibStatut(5);
1007 } elseif ($key ==
'ref') {
1008 $optionLink = (!empty($withproject) ?
'conforboothidproject' :
'conforboothid');
1009 if (empty($confOrBooth->id)) {
1010 $optionLink=
'projectid';
1012 print $object->getNomUrl(1, $optionLink);
1014 print $object->showOutputField($val, $key, $object->$key,
'');
1018 $totalarray[
'nbfield']++;
1020 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
1022 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
1024 if (!isset($totalarray[
'val'])) {
1025 $totalarray[
'val'] = array();
1027 if (!isset($totalarray[
'val'][
't.'.$key])) {
1028 $totalarray[
'val'][
't.'.$key] = 0;
1030 $totalarray[
'val'][
't.'.$key] += $object->$key;
1035 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
1037 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
1038 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
1039 print $hookmanager->resPrint;
1042 print
'<td class="nowrap center">';
1043 if ($massactionbutton || $massaction) {
1045 if (in_array($object->id, $arrayofselected)) {
1048 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1052 $totalarray[
'nbfield']++;
1063include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
1068 foreach ($arrayfields as $key => $val) {
1069 if (!empty($val[
'checked'])) {
1073 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
1079$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
1080$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
1081print $hookmanager->resPrint;
1083print
'</table>'.
"\n";
1086print
'</form>'.
"\n";
1088if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
1089 $hidegeneratedfilelistifempty = 1;
1090 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
1091 $hidegeneratedfilelistifempty = 0;
1094 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
1098 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
1099 $urlsource .= str_replace(
'&',
'&', $param);
1101 $filedir = $diroutputmassaction;
1102 $genallowed = $permissiontoread;
1103 $delallowed = $permissiontoadd;
1105 print $formfile->showdocuments(
'massfilesarea_eventorganization',
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
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_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_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.
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_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
dol_eval($s, $returnvalue=0, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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 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.