28require
'../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';
33require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.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';
39global $dolibarr_main_url_root;
42$langs->loadLangs(array(
"eventorganization",
"other",
"projects",
"companies"));
45$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
46$massaction =
GETPOST(
'massaction',
'alpha');
47$show_files =
GETPOST(
'show_files',
'int');
48$confirm =
GETPOST(
'confirm',
'alpha');
49$cancel =
GETPOST(
'cancel',
'alpha');
50$toselect =
GETPOST(
'toselect',
'array');
51$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
52$backtopage =
GETPOST(
'backtopage',
'alpha');
53$optioncss =
GETPOST(
'optioncss',
'aZ');
57$projectid =
GETPOST(
'projectid',
'int');
58$projectref =
GETPOST(
'ref',
'alpha');
61$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
62$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
63$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
64$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
65if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
69$offset = $limit * $page;
77$diroutputmassaction = $conf->eventorganization->dir_output.
'/temp/massgeneration/'.$user->id;
78$hookmanager->initHooks(array($contextpage));
81$extrafields->fetch_name_optionals_label($object->table_element);
84$search_array_options = $extrafields->getOptionalsFromPost($object->table_element,
'',
'search_');
88 reset($object->fields);
89 $sortfield =
"t.".key($object->fields);
96$search_all =
GETPOST(
'search_all',
'alphanohtml') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml');
98foreach ($object->fields as $key => $val) {
99 if (
GETPOST(
'search_'.$key,
'alpha') !==
'') {
100 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
102 if (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
103 $search[$key.
'_dtstart'] =
dol_mktime(0, 0, 0,
GETPOST(
'search_'.$key.
'_dtstartmonth',
'int'),
GETPOST(
'search_'.$key.
'_dtstartday',
'int'),
GETPOST(
'search_'.$key.
'_dtstartyear',
'int'));
104 $search[$key.
'_dtend'] =
dol_mktime(23, 59, 59,
GETPOST(
'search_'.$key.
'_dtendmonth',
'int'),
GETPOST(
'search_'.$key.
'_dtendday',
'int'),
GETPOST(
'search_'.$key.
'_dtendyear',
'int'));
109$fieldstosearchall = array();
110foreach ($object->fields as $key => $val) {
111 if (!empty($val[
'searchall'])) {
112 $fieldstosearchall[
't.'.$key] = $val[
'label'];
117$arrayfields = array();
118foreach ($object->fields as $key => $val) {
120 if (!empty($val[
'visible'])) {
121 $visible = (int)
dol_eval($val[
'visible'], 1);
122 $arrayfields[
't.'.$key] = array(
123 'label'=>$val[
'label'],
124 'checked'=>(($visible < 0) ? 0 : 1),
125 'enabled'=>(abs($visible) != 3 &&
dol_eval($val[
'enabled'], 1)),
126 'position'=>$val[
'position'],
127 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
132include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
137$permissiontoread = $user->rights->eventorganization->read;
138$permissiontoadd = $user->rights->eventorganization->write;
139$permissiontodelete = $user->rights->eventorganization->delete;
142if (!isModEnabled(
'eventorganization')) {
146if ($user->socid > 0) {
151if (!$permissiontoread) {
160if (preg_match(
'/^set/', $action) && ($projectid > 0 || $projectref) && $user->hasRight(
'eventorganization',
'write')) {
162 $project_attr=preg_replace(
'/^set/',
'', $action);
163 if (array_key_exists($project_attr, $project->fields)) {
164 $result = $project->fetch($projectid, $projectref);
168 $projectid = $project->id;
169 $project->{$project_attr}=
GETPOST($project_attr);
170 $result=$project->update($user);
181if (
GETPOST(
'cancel',
'alpha')) {
185if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend'
186 && $massaction !=
'presend_attendees'
187 && $massaction !=
'confirm_presend'
188 && $massaction !=
'confirm_presend_attendees') {
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 =
'ConferenceOrBooth';
224 $objectlabel =
'ConferenceOrBooth';
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';
229 if ($permissiontoadd && (($action ==
'setstatus' && $confirm ==
"yes") || $massaction ==
'setstatus')) {
233 $objecttmp =
new $objectclass($db);
234 foreach ($toselect as $key => $idselect) {
235 $result = $objecttmp->fetch($idselect);
237 $objecttmp->status =
GETPOST(
"statusmassaction",
'int');
238 $result = $objecttmp->update($user);
255 } elseif ($nbok > 0) {
272$form =
new Form($db);
275$title = $langs->trans(
"EventOrganizationConfOrBoothes");
276$help_url =
"EN:Module_Event_Organization";
281if ($projectid > 0 || $projectref) {
282 $result = $project->fetch($projectid, $projectref);
286 $projectid = $project->id;
288 $result = $project->fetch_thirdparty();
292 $result = $project->fetch_optionals();
297 $help_url =
"EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos";
298 $title = $langs->trans(
"Project") .
' - ' . $langs->trans(
"EventOrganizationConfOrBoothes") .
' - ' . $project->ref .
' ' . $project->name;
299 if (
getDolGlobalString(
'MAIN_HTML_TITLE') && preg_match(
'/projectnameonly/', $conf->global->MAIN_HTML_TITLE) && $project->name) {
300 $title = $project->ref .
' ' . $project->name .
' - ' . $langs->trans(
"ListOfConferencesOrBooths");
313 $userWrite = $project->restrictedProjectArea($user,
'write');
318 print
dol_get_fiche_head($head,
'eventorganisation', $langs->trans(
"ConferenceOrBoothTab"), -1, ($project->public ?
'projectpub' :
'project'));
321 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
323 $morehtmlref =
'<div class="refidno">';
325 $morehtmlref .= $project->title;
327 if (isset($project->thirdparty->id) && $project->thirdparty->id > 0) {
328 $morehtmlref .=
'<br>'.$project->thirdparty->getNomUrl(1,
'project');
330 $morehtmlref .=
'</div>';
333 if (!$user->hasRight(
'project',
'all',
'lire')) {
334 $objectsListId = $project->getProjectsAuthorizedForUser($user, 0, 0);
335 $project->next_prev_filter =
"rowid IN (".$db->sanitize(count($objectsListId) ? join(
',', array_keys($objectsListId)) :
'0').
")";
338 dol_banner_tab($project,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
340 print
'<div class="fichecenter">';
341 print
'<div class="fichehalfleft">';
342 print
'<div class="underbanner clearboth"></div>';
344 print
'<table class="border tableforfield centpercent">';
348 print
'<tr><td class="tdtop">';
349 print $langs->trans(
"Usage");
353 print
'<input type="checkbox" disabled name="usage_opportunity"'.($project->usage_opportunity ?
' checked="checked"' :
'').
'"> ';
354 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
355 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
359 print
'<input type="checkbox" disabled name="usage_task"'.($project->usage_task ?
' checked="checked"' :
'').
'"> ';
360 $htmltext = $langs->trans(
"ProjectFollowTasks");
361 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
365 print
'<input type="checkbox" disabled name="usage_bill_time"'.($project->usage_bill_time ?
' checked="checked"' :
'').
'"> ';
366 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
367 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
370 if (isModEnabled(
'eventorganization')) {
371 print
'<input type="checkbox" disabled name="usage_organize_event"'.($project->usage_organize_event ?
' checked="checked"' :
'').
'"> ';
372 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
373 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
379 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
380 if ($project->public == 0) {
381 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
382 print $langs->trans(
"PrivateProject");
384 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
385 print $langs->trans(
"SharedProject");
390 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
391 if (strcmp($project->budget_amount,
'')) {
392 print
'<span class="amount">'.price($project->budget_amount,
'', $langs, 1, 0, 0, $conf->currency).
'</span>';
397 print
'<tr><td>'.$langs->trans(
"Dates").
' ('.$langs->trans(
"Project").
')</td><td>';
399 print($start ? $start :
'?');
402 print($end ? $end :
'?');
403 if ($object->hasDelay()) {
409 print
'<tr><td>'.$langs->trans(
"Dates").
' ('.$langs->trans(
"Event").
')</td><td>';
410 $start =
dol_print_date($project->date_start_event,
'day',
'tzuserrel');
411 print ($start ?
'<span title="'.
dol_print_date($project->date_start_event,
'dayhour',
'tzuserrel').
'">'.$start.
'</span>' :
'?');
412 $end =
dol_print_date($project->date_end_event,
'day',
'tzuserrel');
414 print ($end ?
'<span title="'.
dol_print_date($project->date_end_event,
'dayhour',
'tzuserrel').
'">'.$end.
'</span>' :
'?');
415 if ($object->hasDelay()) {
421 print
'<tr><td>'.$langs->trans(
"Location").
'</td><td>';
422 print $project->location;
427 $objectconf = $object;
429 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
430 $object = $objectconf;
435 print
'<div class="fichehalfright">';
436 print
'<div class="underbanner clearboth"></div>';
438 print
'<table class="border tableforfield centpercent">';
441 print
'<tr><td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td class="valuefield">';
446 if (isModEnabled(
'categorie')) {
447 print
'<tr><td class="titlefield valignmiddle">'.$langs->trans(
"Categories").
'</td><td class="valuefield">';
448 print $form->showCategories($project->id, Categorie::TYPE_PROJECT, 1);
452 print
'<tr><td class="titlefield">';
453 $typeofdata =
'checkbox:'.($project->accept_conference_suggestions ?
' checked="checked"' :
'');
454 $htmltext = $langs->trans(
"AllowUnknownPeopleSuggestConfHelp");
455 print $form->editfieldkey(
'AllowUnknownPeopleSuggestConf',
'accept_conference_suggestions', ($project->accept_conference_suggestions ? 1 : 0), $project, $permissiontoadd, $typeofdata,
'', 0, 0,
'projectid', $htmltext);
456 print
'</td><td class="valuefield">';
457 print $form->editfieldval(
'AllowUnknownPeopleSuggestConf',
'accept_conference_suggestions', ($project->accept_conference_suggestions ? 1 : 0), $project, $permissiontoadd, $typeofdata,
'', 0, 0,
'', 0,
'',
'projectid');
460 print
'<tr><td class="titlefield">';
461 $typeofdata =
'checkbox:'.($project->accept_booth_suggestions ?
' checked="checked"' :
'');
462 $htmltext = $langs->trans(
"AllowUnknownPeopleSuggestBoothHelp");
463 print $form->editfieldkey(
'AllowUnknownPeopleSuggestBooth',
'accept_booth_suggestions', ($project->accept_booth_suggestions ? 1 : 0), $project, $permissiontoadd, $typeofdata,
'', 0, 0,
'projectid', $htmltext);
464 print
'</td><td class="valuefield">';
465 print $form->editfieldval(
'AllowUnknownPeopleSuggestBooth',
'accept_booth_suggestions', ($project->accept_booth_suggestions ? 1 : 0), $project, $permissiontoadd, $typeofdata,
'', 0, 0,
'', 0,
'',
'projectid');
468 print
'<tr><td class="titlefield">';
469 print $form->editfieldkey($form->textwithpicto($langs->trans(
'PriceOfBooth'), $langs->trans(
"PriceOfBoothHelp")),
'price_booth',
'', $project, $permissiontoadd,
'amount',
'', 0, 0,
'projectid');
470 print
'</td><td class="valuefield">';
471 print $form->editfieldval($form->textwithpicto($langs->trans(
'PriceOfBooth'), $langs->trans(
"PriceOfBoothHelp")),
'price_booth', $project->price_booth, $project, $permissiontoadd,
'amount',
'', 0, 0,
'', 0,
'',
'projectid');
474 print
'<tr><td class="titlefield">';
475 print $form->editfieldkey($form->textwithpicto($langs->trans(
'PriceOfRegistration'), $langs->trans(
"PriceOfRegistrationHelp")),
'price_registration',
'', $project, $permissiontoadd,
'amount',
'', 0, 0,
'projectid');
476 print
'</td><td class="valuefield">';
477 print $form->editfieldval($form->textwithpicto($langs->trans(
'PriceOfRegistration'), $langs->trans(
"PriceOfRegistrationHelp")),
'price_registration', $project->price_registration, $project, $permissiontoadd,
'amount',
'', 0, 0,
'', 0,
'',
'projectid');
480 print
'<tr><td class="titlefield">';
481 print $form->editfieldkey($form->textwithpicto($langs->trans(
'MaxNbOfAttendees'),
''),
'max_attendees',
'', $project, $permissiontoadd,
'integer:3',
'', 0, 0,
'projectid');
482 print
'</td><td class="valuefield">';
483 print $form->editfieldval($form->textwithpicto($langs->trans(
'MaxNbOfAttendees'),
''),
'max_attendees', $project->max_attendees, $project, $permissiontoadd,
'integer:3',
'', 0, 0,
'', 0,
'',
'projectid');
486 print
'<tr><td class="titlefield valignmiddle">'.$langs->trans(
"EventOrganizationICSLink").
'</td><td class="valuefield">';
488 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
489 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
492 $message =
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/agenda/agendaexport.php?format=ical'.($conf->entity > 1 ?
"&entity=".$conf->entity :
"");
493 $message .=
'&exportkey='.urlencode(
getDolGlobalString(
'MAIN_AGENDA_XCAL_EXPORTKEY',
'...'));
494 $message .=
"&project=".$projectid.
'&module='.urlencode(
'@eventorganization').
'&status='.ConferenceOrBooth::STATUS_CONFIRMED.
'">'.$langs->trans(
'DownloadICSLink').img_picto(
'',
'download',
'class="paddingleft"').
'</a>';
499 print
'<tr><td class="titlefield">';
501 print $form->textwithpicto($langs->trans(
"SuggestOrVoteForConfOrBooth"), $langs->trans(
"EvntOrgRegistrationHelpMessage"));
503 print
'</td><td class="valuefield">';
504 $linksuggest = $dolibarr_main_url_root.
'/public/project/index.php?id='.((int) $project->id);
505 $encodedsecurekey =
dol_hash(
getDolGlobalString(
'EVENTORGANIZATION_SECUREKEY').
'conferenceorbooth'.((
int) $project->id),
'md5');
506 $linksuggest .=
'&securekey='.urlencode($encodedsecurekey);
509 print
'<div class="tdoverflowmax200 inline-block valignmiddle"><a target="_blank" href="'.$linksuggest.
'" class="quatrevingtpercent">'.$linksuggest.
'</a></div>';
510 print
'<a target="_blank" rel="noopener noreferrer" href="'.$linksuggest.
'">'.
img_picto(
'',
'globe').
'</a>';
516 print
'<tr><td class="titlefield">';
518 print $langs->trans(
"PublicAttendeeSubscriptionGlobalPage");
520 print
'</td><td class="valuefield">';
521 $link_subscription = $dolibarr_main_url_root.
'/public/eventorganization/attendee_new.php?id='.((int) $project->id).
'&type=global';
522 $encodedsecurekey =
dol_hash(
getDolGlobalString(
'EVENTORGANIZATION_SECUREKEY').
'conferenceorbooth'.((
int) $project->id),
'md5');
523 $link_subscription .=
'&securekey='.urlencode($encodedsecurekey);
526 print
'<div class="tdoverflowmax200 inline-block valignmiddle"><a target="_blank" href="'.$link_subscription.
'" class="quatrevingtpercent">'.$link_subscription.
'</a></div>';
527 print
'<a target="_blank" rel="noopener noreferrer" rel="noopener noreferrer" href="'.$link_subscription.
'">'.
img_picto(
'',
'globe').
'</a>';
537 print
'<div class="clearboth"></div>';
542if (!empty($project->id)) {
544 $tab =
'conferenceorbooth';
546 print
dol_get_fiche_head($head, $tab, $langs->trans(
"Project"), -1, ($project->public ?
'projectpub' :
'project'), 0,
'',
'reposition');
552$sql .= $object->getFieldList(
't');
555if (!empty($extrafields->attributes[$object->table_element][
'label'])) {
556 foreach ($extrafields->attributes[$object->table_element][
'label'] as $key => $val) {
557 $sql .= ($extrafields->attributes[$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
561$parameters = array();
562$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
563$sql .= $hookmanager->resPrint;
564$sql = preg_replace(
'/,\s*$/',
'', $sql);
569$sql .=
" FROM ".MAIN_DB_PREFIX.$object->table_element.
" as t";
570if (isset($extrafields->attributes[$object->table_element][
'label']) && is_array($extrafields->attributes[$object->table_element][
'label']) && count($extrafields->attributes[$object->table_element][
'label'])) {
571 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (t.id = ef.fk_object)";
573$sql .=
" INNER JOIN ".MAIN_DB_PREFIX.
"c_actioncomm as cact ON cact.id=t.fk_action AND cact.module LIKE '%@eventorganization'";
575$parameters = array();
576$reshook = $hookmanager->executeHooks(
'printFieldListFrom', $parameters, $object, $action);
577$sql .= $hookmanager->resPrint;
578if ($object->ismultientitymanaged == 1) {
579 $sql .=
" WHERE t.entity IN (".getEntity($object->element, (
GETPOST(
'search_current_entity',
'int') ? 0 : 1)).
")";
581 $sql .=
" WHERE 1 = 1";
584 $sql .=
" AND t.fk_project = ".((int) $project->id);
586foreach ($search as $key => $val) {
587 if (array_key_exists($key, $object->fields)) {
588 if ($key ==
'status' && $search[$key] == -1) {
591 $mode_search = (($object->isInt($object->fields[$key]) || $object->isFloat($object->fields[$key])) ? 1 : 0);
592 if ((strpos($object->fields[$key][
'type'],
'integer:') === 0) || (strpos($object->fields[$key][
'type'],
'sellist:') === 0) || !empty($object->fields[$key][
'arrayofkeyval'])) {
593 if ($search[$key] ==
'-1' || ($search[$key] ===
'0' && (empty($object->fields[$key][
'arrayofkeyval']) || !array_key_exists(
'0', $object->fields[$key][
'arrayofkeyval'])))) {
598 if ($search[$key] !=
'') {
599 $sql .=
natural_search(
"t.".$db->escape($key), $search[$key], (($key ==
'status') ? 2 : $mode_search));
602 if (preg_match(
'/(_dtstart|_dtend)$/', $key) && $search[$key] !=
'') {
603 $columnName = preg_replace(
'/(_dtstart|_dtend)$/',
'', $key);
604 if (preg_match(
'/^(date|timestamp|datetime)/', $object->fields[$columnName][
'type'])) {
605 if (preg_match(
'/_dtstart$/', $key)) {
606 $sql .=
" AND t.".$db->escape($columnName).
" >= '".$db->idate($search[$key]).
"'";
608 if (preg_match(
'/_dtend$/', $key)) {
609 $sql .=
" AND t.".$db->escape($columnName).
" <= '".$db->idate($search[$key]).
"'";
617 $sql .=
natural_search(array_keys($fieldstosearchall), $search_all);
621include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
623$parameters = array();
624$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
625$sql .= $hookmanager->resPrint;
628$nbtotalofrecords =
'';
631 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
632 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
633 $resql = $db->query($sqlforcount);
635 $objforcount = $db->fetch_object($resql);
636 $nbtotalofrecords = $objforcount->nbtotalofrecords;
641 if (($page * $limit) > $nbtotalofrecords) {
649$sql .= $db->order($sortfield, $sortorder);
652 $sql .= $db->plimit($limit + 1, $offset);
655$resql = $db->query($sql);
661$num = $db->num_rows($resql);
664if ($num == 1 && !
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
665 $obj = $db->fetch_object($resql);
667 header(
"Location: ".DOL_URL_ROOT.
'/eventorganization/conferenceorbooth_card.php?id='.((
int) $id));
671$arrayofselected = is_array($toselect) ? $toselect : array();
675 $param .=
'&mode='.urlencode($mode);
677if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
678 $param .=
'&contextpage='.urlencode($contextpage);
680if ($limit > 0 && $limit != $conf->liste_limit) {
681 $param .=
'&limit='.((int) $limit);
683if ($optioncss !=
'') {
684 $param .=
'&optioncss='.urlencode($optioncss);
686if ($project->id > 0) {
687 $param .=
'&projectid='.((int) $project->id);
689foreach ($search as $key => $val) {
690 if (is_array($search[$key])) {
691 foreach ($search[$key] as $skey) {
693 $param .=
'&search_'.$key.
'[]='.urlencode($skey);
696 } elseif (preg_match(
'/(_dtstart|_dtend)$/', $key) && !empty($val)) {
697 $param .=
'&search_'.$key.
'month='.((int)
GETPOST(
'search_'.$key.
'month',
'int'));
698 $param .=
'&search_'.$key.
'day='.((int)
GETPOST(
'search_'.$key.
'day',
'int'));
699 $param .=
'&search_'.$key.
'year='.((int)
GETPOST(
'search_'.$key.
'year',
'int'));
700 } elseif ($search[$key] !=
'') {
701 $param .=
'&search_'.$key.
'='.urlencode($search[$key]);
705include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
707$parameters = array(
'param' => &$param);
708$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
709$param .= $hookmanager->resPrint;
712$arrayofmassactions = array(
716 'presend'=>
img_picto(
'',
'email',
'class="pictofixedwidth"').$langs->trans(
"SendByMail").
' ('.$langs->trans(
"ToSpeakers").
')',
719if (!empty($permissiontodelete)) {
720 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
722if (!empty($permissiontoadd)) {
723 $arrayofmassactions[
'presetstatus'] =
img_picto(
'',
'edit',
'class="pictofixedwidth"').$langs->trans(
"ModifyStatus");
725if (
GETPOST(
'nomassaction',
'int') || in_array($massaction, array(
'presend',
'predelete'))) {
726 $arrayofmassactions = array();
728$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
730print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].(!empty($projectid) ?
'?projectid='.$projectid :
'').
'">'.
"\n";
731if ($optioncss !=
'') {
732 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
734print
'<input type="hidden" name="token" value="'.newToken().
'">';
735print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
736print
'<input type="hidden" name="action" value="list">';
737print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
738print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
739print
'<input type="hidden" name="page" value="'.$page.
'">';
740print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
741print
'<input type="hidden" name="page_y" value="">';
742print
'<input type="hidden" name="mode" value="'.$mode.
'">';
746$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=common'.(!empty($project->id) ?
'&withproject=1&fk_project='.$project->id :
'').(!empty($project->socid) ?
'&fk_soc='.$project->socid :
'').preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ((empty($mode) || $mode ==
'common') ? 2 : 1), array(
'morecss'=>
'reposition'));
747$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewKanban'),
'',
'fa fa-th-list imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=kanban'.(!empty($project->id) ?
'&withproject=1&fk_project='.$project->id :
'').(!empty($project->socid) ?
'&fk_soc='.$project->socid :
'').preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ($mode ==
'kanban' ? 2 : 1), array(
'morecss'=>
'reposition'));
749$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/eventorganization/conferenceorbooth_card.php?action=create'.(!empty($project->id) ?
'&withproject=1&fk_project='.$project->id :
'').(!empty($project->socid) ?
'&fk_soc='.$project->socid :
'').
'&backtopage='.urlencode($_SERVER[
'PHP_SELF']).(!empty($project->id) ?
'?projectid='.$project->id :
''),
'', $permissiontoadd);
751print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, $object->picto, 0, $newcardbutton,
'', $limit, 0, 0, 1);
756$modelmail =
"conferenceorbooth";
758$trackid =
'conferenceorbooth_'.$object->id;
759$withmaindocfilemail = 0;
760include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
762if ($massaction ==
'presetstatus') {
763 $formquestion = array();
764 $statuslist[$objecttmp::STATUS_DRAFT] = $objecttmp->LibStatutEvent($objecttmp::STATUS_DRAFT);
765 $statuslist[$objecttmp::STATUS_SUGGESTED] = $objecttmp->LibStatutEvent($objecttmp::STATUS_SUGGESTED);
766 $statuslist[$objecttmp::STATUS_CONFIRMED] = $objecttmp->LibStatutEvent($objecttmp::STATUS_CONFIRMED);
767 $statuslist[$objecttmp::STATUS_NOT_QUALIFIED] = $objecttmp->LibStatutEvent($objecttmp::STATUS_NOT_QUALIFIED);
768 $statuslist[$objecttmp::STATUS_DONE] = $objecttmp->LibStatutEvent($objecttmp::STATUS_DONE);
769 $statuslist[$objecttmp::STATUS_CANCELED] = $objecttmp->LibStatutEvent($objecttmp::STATUS_CANCELED);
770 $formquestion[] = array(
'type' =>
'other',
771 'name' =>
'affectedcommercial',
772 'label' => $form->editfieldkey(
'ModifyStatus',
'status_id',
'', $object, 0),
773 'value' => $form->selectarray(
'statusmassaction', $statuslist,
GETPOST(
'statusmassaction')));
774 print $form->formconfirm($_SERVER[
"PHP_SELF"], $langs->trans(
"ConfirmModifyStatus"), $langs->trans(
"ConfirmModifyStatusQuestion", count($toselect)),
"setstatus", $formquestion, 1, 0, 200, 500, 1);
779 foreach ($fieldstosearchall as $key => $val) {
780 $fieldstosearchall[$key] = $langs->trans($val);
781 $setupstring .= $key.
"=".$val.
";";
783 print
'<!-- Search done like if EVENTORGANIZATION_QUICKSEARCH_ON_FIELDS = '.$setupstring.
' -->'.
"\n";
784 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $search_all).join(
', ', $fieldstosearchall).
'</div>'.
"\n";
792$parameters = array();
793$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
794if (empty($reshook)) {
795 $moreforfilter .= $hookmanager->resPrint;
797 $moreforfilter = $hookmanager->resPrint;
800if (!empty($moreforfilter)) {
801 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
802 print $moreforfilter;
803 $parameters = array();
804 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
805 print $hookmanager->resPrint;
809$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
810$selectedfields = ($mode !=
'kanban' ? $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN',
'')) :
'');
811$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
814print
'<div class="div-table-responsive">';
815print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
820print
'<tr class="liste_titre_filter">';
823 print
'<td class="liste_titre center maxwidthsearch">';
824 $searchpicto = $form->showFilterButtons(
'left');
828foreach ($object->fields as $key => $val) {
829 $searchkey = empty($search[$key]) ?
'' : $search[$key];
830 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
831 if ($key ==
'status') {
832 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
833 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
834 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
835 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
836 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
837 } 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'])) {
838 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
840 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
841 print
'<td class="liste_titre'.($cssforfield ?
' '.$cssforfield :
'').($key ==
'status' ?
' parentonrightofpage' :
'').
'">';
842 if (!empty($val[
'arrayofkeyval']) && is_array($val[
'arrayofkeyval'])) {
843 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);
844 } elseif ((strpos($val[
'type'],
'integer:') === 0) || (strpos($val[
'type'],
'sellist:') === 0)) {
845 print $object->showInputField($val, $key, (isset($search[$key]) ? $search[$key] :
''),
'',
'',
'search_', $cssforfield.
' maxwidth250', 1);
846 } elseif (preg_match(
'/^(date|timestamp|datetime)/', $val[
'type'])) {
847 print
'<div class="nowrap">';
848 print $form->selectDate($search[$key.
'_dtstart'] ? $search[$key.
'_dtstart'] :
'',
"search_".$key.
"_dtstart", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
850 print
'<div class="nowrap">';
851 print $form->selectDate($search[$key.
'_dtend'] ? $search[$key.
'_dtend'] :
'',
"search_".$key.
"_dtend", 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
853 } elseif ($key ==
'lang') {
854 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formadmin.class.php';
856 print $formadmin->select_language($search[$key],
'search_lang', 0,
null, 1, 0, 0,
'minwidth150 maxwidth200', 2);
858 print
'<input type="text" class="flat maxwidth75" name="search_'.$key.
'" value="'.
dol_escape_htmltag(isset($search[$key]) ? $search[$key] :
'').
'">';
864include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
867$parameters = array(
'arrayfields'=>$arrayfields);
868$reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
869print $hookmanager->resPrint;
872 print
'<td class="liste_titre center maxwidthsearch">';
873 $searchpicto = $form->showFilterButtons();
879$totalarray = array();
880$totalarray[
'nbfield'] = 0;
884print
'<tr class="liste_titre">';
887 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
888 $totalarray[
'nbfield']++;
890foreach ($object->fields as $key => $val) {
891 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
892 if ($key ==
'status') {
893 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
894 } elseif (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
895 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
896 } elseif (in_array($val[
'type'], array(
'timestamp'))) {
897 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowrap';
898 } 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'])) {
899 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
901 $cssforfield = preg_replace(
'/small\s*/',
'', $cssforfield);
902 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
903 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";
904 $totalarray[
'nbfield']++;
908include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
910$parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder,
'totalarray'=>&$totalarray);
911$reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
912print $hookmanager->resPrint;
915 print
getTitleFieldOfList($selectedfields, 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ').
"\n";
916 $totalarray[
'nbfield']++;
922$needToFetchEachLine = 0;
923if (isset($extrafields->attributes[$object->table_element][
'computed']) && is_array($extrafields->attributes[$object->table_element][
'computed']) && count($extrafields->attributes[$object->table_element][
'computed']) > 0) {
924 foreach ($extrafields->attributes[$object->table_element][
'computed'] as $key => $val) {
925 if (!is_null($val) && preg_match(
'/\$object/', $val)) {
926 $needToFetchEachLine++;
935$savnbfield = $totalarray[
'nbfield'];
936$totalarray = array();
937$totalarray[
'nbfield'] = 0;
938$imaxinloop = ($limit ? min($num, $limit) : $num);
939while ($i < $imaxinloop) {
940 $obj = $db->fetch_object($resql);
946 $object->setVarsFromFetchObj($obj);
948 if ($mode ==
'kanban') {
950 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
951 print
'<div class="box-flex-container kanban">';
955 if ($massactionbutton || $massaction) {
957 if (in_array($object->id, $arrayofselected)) {
961 $thirdparty = $object->fetch_thirdparty();
962 print $object->getKanbanView(
'', array(
'selected' => $selected,
'thirdparty' => $thirdparty));
963 if ($i == ($imaxinloop - 1)) {
970 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
973 print
'<td class="nowrap center">';
974 if ($massactionbutton || $massaction) {
976 if (in_array($object->id, $arrayofselected)) {
979 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
983 $totalarray[
'nbfield']++;
986 foreach ($object->fields as $key => $val) {
987 $cssforfield = (empty($val[
'csslist']) ? (empty($val[
'css']) ?
'' : $val[
'css']) : $val[
'csslist']);
988 if (in_array($val[
'type'], array(
'date',
'datetime',
'timestamp'))) {
989 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
990 } elseif ($key ==
'status') {
991 $cssforfield .= ($cssforfield ?
' ' :
'').
'center';
994 if (in_array($val[
'type'], array(
'timestamp'))) {
995 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
996 } elseif ($key ==
'ref') {
997 $cssforfield .= ($cssforfield ?
' ' :
'').
'nowraponall';
1000 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'])) {
1001 $cssforfield .= ($cssforfield ?
' ' :
'').
'right';
1005 if (!empty($arrayfields[
't.'.$key][
'checked'])) {
1006 print
'<td'.($cssforfield ?
' class="'.$cssforfield.(preg_match(
'/tdoverflow/', $cssforfield) ?
' classfortooltip' :
'').
'"' :
'');
1007 if (preg_match(
'/tdoverflow/', $cssforfield) && !is_numeric($object->$key)) {
1008 print
' title="'.dol_escape_htmltag($object->$key).
'"';
1011 if ($key ==
'status') {
1012 print $object->getLibStatut(5);
1013 } elseif ($key ==
'ref') {
1014 print $object->getNomUrl(1, 0,
'', (($projectid > 0) ?
'withproject' :
''));
1016 print $object->showOutputField($val, $key, $object->$key,
'');
1020 $totalarray[
'nbfield']++;
1022 if (!empty($val[
'isameasure']) && $val[
'isameasure'] == 1) {
1024 $totalarray[
'pos'][$totalarray[
'nbfield']] =
't.'.$key;
1026 if (!isset($totalarray[
'val'])) {
1027 $totalarray[
'val'] = array();
1029 if (!isset($totalarray[
'val'][
't.'.$key])) {
1030 $totalarray[
'val'][
't.'.$key] = 0;
1032 $totalarray[
'val'][
't.'.$key] += $object->$key;
1037 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
1039 $parameters = array(
'arrayfields'=>$arrayfields,
'object'=>$object,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
1040 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
1041 print $hookmanager->resPrint;
1044 print
'<td class="nowrap center">';
1045 if ($massactionbutton || $massaction) {
1047 if (in_array($object->id, $arrayofselected)) {
1050 print
'<input id="cb'.$object->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$object->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1054 $totalarray[
'nbfield']++;
1065include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
1070 foreach ($arrayfields as $key => $val) {
1071 if (!empty($val[
'checked'])) {
1075 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
1081$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
1082$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
1083print $hookmanager->resPrint;
1085print
'</table>'.
"\n";
1088print
'</form>'.
"\n";
1090if (in_array(
'builddoc', array_keys($arrayofmassactions)) && ($nbtotalofrecords ===
'' || $nbtotalofrecords)) {
1091 $hidegeneratedfilelistifempty = 1;
1092 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
1093 $hidegeneratedfilelistifempty = 0;
1096 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
1100 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
1101 $urlsource .= str_replace(
'&',
'&', $param);
1103 $filedir = $diroutputmassaction;
1104 $genallowed = $permissiontoread;
1105 $delallowed = $permissiontoadd;
1107 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 ConferenceOrBooth.
Class to manage projects.
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.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
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.