28require
"../main.inc.php";
29require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
36if (isModEnabled(
'category')) {
37 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
41$langsLoad = array(
'projects',
'users',
'companies');
42if (isModEnabled(
'eventorganization')) {
43 $langsLoad[] =
'eventorganization';
46$langs->loadLangs($langsLoad);
48$action =
GETPOST(
'action',
'aZ09');
49$massaction =
GETPOST(
'massaction',
'alpha');
51$confirm =
GETPOST(
'confirm',
'alpha');
52$cancel =
GETPOST(
'cancel',
'aZ09');
53$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'projecttasklist';
54$backtopage =
GETPOST(
'backtopage',
'alpha');
57$optioncss =
GETPOST(
'optioncss',
'aZ');
58$backtopage =
GETPOST(
'backtopage',
'alpha');
59$toselect =
GETPOST(
'toselect',
'array');
63$taskref =
GETPOST(
'taskref',
'alpha');
67$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
68$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
70if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
73$offset = $limit * $page;
78$search_taskref =
GETPOST(
'search_taskref');
79$search_tasklabel =
GETPOST(
'search_tasklabel');
80$search_taskdescription =
GETPOST(
'search_taskdescription');
81$search_dtstartday =
GETPOST(
'search_dtstartday');
82$search_dtstartmonth =
GETPOST(
'search_dtstartmonth');
83$search_dtstartyear =
GETPOST(
'search_dtstartyear');
84$search_dtendday =
GETPOST(
'search_dtendday');
85$search_dtendmonth =
GETPOST(
'search_dtendmonth');
86$search_dtendyear =
GETPOST(
'search_dtendyear');
87$search_planedworkload =
GETPOST(
'search_planedworkload');
88$search_timespend =
GETPOST(
'search_timespend');
89$search_progresscalc =
GETPOST(
'search_progresscalc');
90$search_progressdeclare =
GETPOST(
'search_progressdeclare');
91$search_task_budget_amount =
GETPOST(
'search_task_budget_amount');
92$search_task_billable =
GETPOST(
'search_task_billable');
94$search_date_start_startmonth =
GETPOSTINT(
'search_date_start_startmonth');
95$search_date_start_startyear =
GETPOSTINT(
'search_date_start_startyear');
96$search_date_start_startday =
GETPOSTINT(
'search_date_start_startday');
97$search_date_start_start =
dol_mktime(0, 0, 0, $search_date_start_startmonth, $search_date_start_startday, $search_date_start_startyear);
98$search_date_start_endmonth =
GETPOSTINT(
'search_date_start_endmonth');
99$search_date_start_endyear =
GETPOSTINT(
'search_date_start_endyear');
100$search_date_start_endday =
GETPOSTINT(
'search_date_start_endday');
101$search_date_start_end =
dol_mktime(23, 59, 59, $search_date_start_endmonth, $search_date_start_endday, $search_date_start_endyear);
103$search_date_end_startmonth =
GETPOSTINT(
'search_date_end_startmonth');
104$search_date_end_startyear =
GETPOSTINT(
'search_date_end_startyear');
105$search_date_end_startday =
GETPOSTINT(
'search_date_end_startday');
106$search_date_end_start =
dol_mktime(0, 0, 0, $search_date_end_startmonth, $search_date_end_startday, $search_date_end_startyear);
107$search_date_end_endmonth =
GETPOSTINT(
'search_date_end_endmonth');
108$search_date_end_endyear =
GETPOSTINT(
'search_date_end_endyear');
109$search_date_end_endday =
GETPOSTINT(
'search_date_end_endday');
110$search_date_end_end =
dol_mktime(23, 59, 59, $search_date_end_endmonth, $search_date_end_endday, $search_date_end_endyear);
115$taskstatic =
new Task($db);
118include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
119if (
getDolGlobalString(
'PROJECT_ALLOW_COMMENT_ON_PROJECT') && method_exists($object,
'fetchComments') && empty(
$object->comments)) {
123if ($id > 0 || !empty($ref)) {
125 $extrafields->fetch_name_optionals_label(
$object->table_element);
127$extrafields->fetch_name_optionals_label($taskstatic->table_element);
128$search_array_options = $extrafields->getOptionalsFromPost($taskstatic->table_element,
'',
'search_');
144$hookmanager->initHooks(array(
'projecttaskscard',
'globalcard'));
149$diroutputmassaction = $conf->project->dir_output.
'/tasks/temp/massgeneration/'.$user->id;
153$billable = (
GETPOST(
'billable',
'aZ') ==
'yes' ? 1 : 0);
154$label =
GETPOST(
'label',
'alpha');
155$description =
GETPOST(
'description',
'restricthtml');
156$planned_workloadhour = (GETPOSTISSET(
'planned_workloadhour') ?
GETPOSTINT(
'planned_workloadhour') :
'');
157$planned_workloadmin = (GETPOSTISSET(
'planned_workloadmin') ?
GETPOSTINT(
'planned_workloadmin') :
'');
158if (GETPOSTISSET(
'planned_workloadhour') || GETPOSTISSET(
'planned_workloadmin')) {
159 $planned_workload = (int) $planned_workloadhour * 3600 + (
int) $planned_workloadmin * 60;
161 $planned_workload =
'';
166 't.ref' => array(
'label' =>
"RefTask",
'checked' => 1,
'position' => 1),
167 't.label' => array(
'label' =>
"LabelTask",
'checked' => 1,
'position' => 2),
168 't.description' => array(
'label' =>
"Description",
'checked' => 0,
'position' => 3),
169 't.dateo' => array(
'label' =>
"DateStart",
'checked' => 1,
'position' => 4),
170 't.datee' => array(
'label' =>
"Deadline",
'checked' => 1,
'position' => 5),
171 't.planned_workload' => array(
'label' =>
"PlannedWorkload",
'checked' => 1,
'position' => 6),
172 't.duration_effective' => array(
'label' =>
"TimeSpent",
'checked' => 1,
'position' => 7),
173 't.progress_calculated' => array(
'label' =>
"ProgressCalculated",
'checked' => 1,
'position' => 8),
174 't.progress' => array(
'label' =>
"ProgressDeclared",
'checked' => 1,
'position' => 9),
175 't.progress_summary' => array(
'label' =>
"TaskProgressSummary",
'checked' => 1,
'position' => 10),
176 't.budget_amount' => array(
'label' =>
"Budget",
'checked' => 0,
'position' => 11),
177 'c.assigned' => array(
'label' =>
"TaskRessourceLinks",
'checked' => 1,
'position' => 12),
180 $arrayfields[
't.tobill'] = array(
'label' => $langs->trans(
"TimeToBill"),
'checked' => 0,
'position' => 11);
181 $arrayfields[
't.billed'] = array(
'label' => $langs->trans(
"TimeBilled"),
'checked' => 0,
'position' => 12);
182 $arrayfields[
't.billable'] = array(
'label' => $langs->trans(
"Billable"),
'checked' => 1,
'position' => 13);
186$extrafieldsobjectkey = $taskstatic->table_element;
187$extrafieldsobjectprefix =
'efpt.';
188include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
191'@phan-var-force array<string,array{label:string,checked?:int<0,1>,position?:int,help?:string}> $arrayfields';
193$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
201 if (!empty($backtopageforcancel)) {
202 header(
"Location: ".$backtopageforcancel);
204 } elseif (!empty($backtopage)) {
205 header(
"Location: ".$backtopage);
211if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
215$parameters = array(
'id' => $id);
216$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
221if (empty($reshook)) {
223 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
226 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
227 $search_user_id =
"";
228 $search_taskref =
'';
229 $search_tasklabel =
'';
230 $search_dtstartday =
'';
231 $search_dtstartmonth =
'';
232 $search_dtstartyear =
'';
233 $search_dtendday =
'';
234 $search_dtendmonth =
'';
235 $search_dtendyear =
'';
236 $search_planedworkload =
'';
237 $search_timespend =
'';
238 $search_progresscalc =
'';
239 $search_progressdeclare =
'';
240 $search_task_budget_amount =
'';
241 $search_task_billable =
'';
243 $search_array_options = array();
244 $search_date_start_startmonth =
"";
245 $search_date_start_startyear =
"";
246 $search_date_start_startday =
"";
247 $search_date_start_start =
"";
248 $search_date_start_endmonth =
"";
249 $search_date_start_endyear =
"";
250 $search_date_start_endday =
"";
251 $search_date_start_end =
"";
252 $search_date_end_startmonth =
"";
253 $search_date_end_startyear =
"";
254 $search_date_end_startday =
"";
255 $search_date_end_start =
"";
256 $search_date_end_endmonth =
"";
257 $search_date_end_endyear =
"";
258 $search_date_end_endday =
"";
259 $search_date_end_end =
"";
263 $objectclass =
'Task';
264 $objectlabel =
'Tasks';
265 $permissiontoread = $user->hasRight(
'projet',
'lire');
266 $permissiontodelete = $user->hasRight(
'projet',
'supprimer');
267 $uploaddir = $conf->project->dir_output.
'/tasks';
268 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
271$morewherefilterarray = array();
273if (!empty($search_taskref)) {
274 $morewherefilterarray[] =
natural_search(
't.ref', $search_taskref, 0, 1);
277if (!empty($search_tasklabel)) {
278 $morewherefilterarray[] =
natural_search(
't.label', $search_tasklabel, 0, 1);
281$moresql =
dolSqlDateFilter(
't.dateo', $search_dtstartday, $search_dtstartmonth, $search_dtstartyear, 1);
283 $morewherefilterarray[] = $moresql;
286$moresql =
dolSqlDateFilter(
't.datee', $search_dtendday, $search_dtendmonth, $search_dtendyear, 1);
288 $morewherefilterarray[] = $moresql;
291if ($search_date_start_start) {
292 $morewherefilterarray[] =
" t.dateo >= '".$db->idate($search_date_start_start).
"'";
294if ($search_date_start_end) {
295 $morewherefilterarray[] =
" t.dateo <= '".$db->idate($search_date_start_end).
"'";
298if ($search_date_end_start) {
299 $morewherefilterarray[] =
" t.datee >= '".$db->idate($search_date_end_start).
"'";
301if ($search_date_end_end) {
302 $morewherefilterarray[] =
" t.datee <= '".$db->idate($search_date_end_end).
"'";
305if (!empty($search_planedworkload)) {
306 $morewherefilterarray[] =
natural_search(
't.planned_workload', $search_planedworkload, 1, 1);
309if (!empty($search_timespend)) {
310 $morewherefilterarray[] =
natural_search(
't.duration_effective', $search_timespend, 1, 1);
313if (!empty($search_progressdeclare)) {
314 $morewherefilterarray[] =
natural_search(
't.progress', $search_progressdeclare, 1, 1);
316if (!empty($search_progresscalc)) {
317 $morewherefilterarray[] =
'(planned_workload IS NULL OR planned_workload = 0 OR '.natural_search(
'ROUND(100 * duration_effective / planned_workload, 2)', $search_progresscalc, 1, 1).
')';
320if ($search_task_budget_amount) {
321 $morewherefilterarray[] =
natural_search(
't.budget_amount', $search_task_budget_amount, 1, 1);
323if ($search_task_billable) {
324 $morewherefilterarray[] =
" t.billable = ".($search_task_billable ==
"yes" ? 1 : 0);
328$morewherefilter =
'';
329if (count($morewherefilterarray) > 0) {
330 $morewherefilter =
' AND '.implode(
' AND ', $morewherefilterarray);
333if ($action ==
'createtask' && $user->hasRight(
'projet',
'creer')) {
341 if (empty($taskref)) {
342 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")),
null,
'errors');
347 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Label")),
null,
'errors');
350 } elseif (!
GETPOST(
'task_parent')) {
351 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"ChildOfProjectTask")),
null,
'errors');
357 $tmparray = explode(
'_',
GETPOST(
'task_parent'));
358 $projectid = empty($tmparray[0]) ?
$id : (int) $tmparray[0];
359 $task_parent = empty($tmparray[1]) ? 0 : $tmparray[1];
361 $task =
new Task($db);
363 $task->fk_project = $projectid;
364 $task->entity =
$object->entity;
365 $task->ref = $taskref;
366 $task->label = $label;
367 $task->description = $description;
368 $task->planned_workload = $planned_workload;
369 $task->fk_task_parent = $task_parent;
371 $task->date_start = $date_start;
372 $task->date_end = $date_end;
373 $task->progress = $progress;
374 $task->budget_amount = $budget_amount;
375 $task->billable = $billable;
378 $ret = $extrafields->setOptionalsFromPost(
null, $task);
380 $taskid = $task->create($user);
383 $result = $task->add_contact(
GETPOSTINT(
"userid"),
'TASKEXECUTIVE',
'internal');
385 if ($db->lasterrno() ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
386 $langs->load(
"projects");
388 $duplicate_code_error =
true;
398 if (!empty($backtopage)) {
399 header(
"Location: ".$backtopage);
401 } elseif (empty($projectid)) {
402 header(
"Location: ".DOL_URL_ROOT.
'/projet/tasks/list.php'.(empty($mode) ?
'' :
'?mode='.$mode));
408 if (!empty($backtopage)) {
409 header(
"Location: ".$backtopage);
411 } elseif (empty($id)) {
413 header(
"Location: ".DOL_URL_ROOT.
'/projet/tasks/list.php'.(empty($mode) ?
'' :
'?mode='.$mode));
425$form =
new Form($db);
428$projectstatic =
new Project($db);
429$taskstatic =
new Task($db);
430$userstatic =
new User($db);
432$title = $langs->trans(
"Tasks").
' - '.
$object->ref.
' '.
$object->name;
434 $title =
$object->ref.
' '.
$object->name.
' - '.$langs->trans(
"Tasks");
436if ($action ==
'create') {
437 $title = $langs->trans(
"NewTask");
439$help_url =
"EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos";
441llxHeader(
"", $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-project page-card_tasks');
443$arrayofselected = is_array($toselect) ? $toselect : array();
445if ($id > 0 || !empty($ref)) {
446 $result =
$object->fetch($id, $ref);
450 $result =
$object->fetch_thirdparty();
454 $result =
$object->fetch_optionals();
462 $userWrite =
$object->restrictedProjectArea($user,
'write');
467 $tab = (GETPOSTISSET(
'tab') ?
GETPOST(
'tab') :
'tasks');
472 $param =
'&id='.$object->id;
473 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
474 $param .=
'&contextpage='.urlencode($contextpage);
476 if ($search_user_id) {
477 $param .=
'&search_user_id='.urlencode((
string) ($search_user_id));
479 if ($search_taskref) {
480 $param .=
'&search_taskref='.urlencode($search_taskref);
482 if ($search_tasklabel) {
483 $param .=
'&search_tasklabel='.urlencode($search_tasklabel);
485 if ($search_taskdescription) {
486 $param .=
'&search_taskdescription='.urlencode($search_taskdescription);
488 if ($search_dtstartday) {
489 $param .=
'&search_dtstartday='.urlencode($search_dtstartday);
491 if ($search_dtstartmonth) {
492 $param .=
'&search_dtstartmonth='.urlencode($search_dtstartmonth);
494 if ($search_dtstartyear) {
495 $param .=
'&search_dtstartyear='.urlencode($search_dtstartyear);
497 if ($search_dtendday) {
498 $param .=
'&search_dtendday='.urlencode($search_dtendday);
500 if ($search_dtendmonth) {
501 $param .=
'&search_dtendmonth='.urlencode($search_dtendmonth);
503 if ($search_dtendyear) {
504 $param .=
'&search_dtendyear='.urlencode($search_dtendyear);
506 if ($search_date_start_startmonth) {
507 $param .=
'&search_date_start_startmonth='.urlencode((
string) ($search_date_start_startmonth));
509 if ($search_date_start_startyear) {
510 $param .=
'&search_date_start_startyear='.urlencode((
string) ($search_date_start_startyear));
512 if ($search_date_start_startday) {
513 $param .=
'&search_date_start_startday='.urlencode((
string) ($search_date_start_startday));
515 if ($search_date_start_start) {
516 $param .=
'&search_date_start_start='.urlencode($search_date_start_start);
518 if ($search_date_start_endmonth) {
519 $param .=
'&search_date_start_endmonth='.urlencode((
string) ($search_date_start_endmonth));
521 if ($search_date_start_endyear) {
522 $param .=
'&search_date_start_endyear='.urlencode((
string) ($search_date_start_endyear));
524 if ($search_date_start_endday) {
525 $param .=
'&search_date_start_endday='.urlencode((
string) ($search_date_start_endday));
527 if ($search_date_start_end) {
528 $param .=
'&search_date_start_end='.urlencode($search_date_start_end);
530 if ($search_date_end_startmonth) {
531 $param .=
'&search_date_end_startmonth='.urlencode((
string) ($search_date_end_startmonth));
533 if ($search_date_end_startyear) {
534 $param .=
'&search_date_end_startyear='.urlencode((
string) ($search_date_end_startyear));
536 if ($search_date_end_startday) {
537 $param .=
'&search_date_end_startday='.urlencode((
string) ($search_date_end_startday));
539 if ($search_date_end_start) {
540 $param .=
'&search_date_end_start='.urlencode($search_date_end_start);
542 if ($search_date_end_endmonth) {
543 $param .=
'&search_date_end_endmonth='.urlencode((
string) ($search_date_end_endmonth));
545 if ($search_date_end_endyear) {
546 $param .=
'&search_date_end_endyear='.urlencode((
string) ($search_date_end_endyear));
548 if ($search_date_end_endday) {
549 $param .=
'&search_date_end_endday='.urlencode((
string) ($search_date_end_endday));
551 if ($search_date_end_end) {
552 $param .=
'&search_date_end_end=' . urlencode($search_date_end_end);
554 if ($search_planedworkload) {
555 $param .=
'&search_planedworkload='.urlencode($search_planedworkload);
557 if ($search_timespend) {
558 $param .=
'&search_timespend='.urlencode($search_timespend);
560 if ($search_progresscalc) {
561 $param .=
'&search_progresscalc='.urlencode($search_progresscalc);
563 if ($search_progressdeclare) {
564 $param .=
'&search_progressdeclare='.urlencode($search_progressdeclare);
566 if ($search_task_budget_amount) {
567 $param .=
'&search_task_budget_amount='.urlencode($search_task_budget_amount);
569 if ($search_task_billable) {
570 $param .=
'&search_task_billable='.urlencode($search_task_billable);
572 if ($optioncss !=
'') {
573 $param .=
'&optioncss='.urlencode($optioncss);
576 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
578 $arrayofmassactions = array();
579 if ($user->hasRight(
'projet',
'creer')) {
580 $arrayofmassactions[
'preclonetasks'] =
img_picto(
'',
'clone',
'class="pictofixedwidth"').$langs->trans(
"Clone");
582 if ($permissiontodelete) {
583 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
585 if (in_array($massaction, array(
'presend',
'predelete'))) {
586 $arrayofmassactions = array();
588 $massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
592 if (!empty($_SESSION[
'pageforbacktolist']) && !empty($_SESSION[
'pageforbacktolist'][
'project'])) {
593 $tmpurl = $_SESSION[
'pageforbacktolist'][
'project'];
594 $tmpurl = preg_replace(
'/__SOCID__/', (
string)
$object->socid, $tmpurl);
595 $linkback =
'<a href="'.$tmpurl.(preg_match(
'/\?/', $tmpurl) ?
'&' :
'?').
'restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
597 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
600 $morehtmlref =
'<div class="refidno">';
602 $morehtmlref .=
$object->title;
604 if (!empty(
$object->thirdparty->id) &&
$object->thirdparty->id > 0) {
605 $morehtmlref .=
'<br>'.$object->thirdparty->getNomUrl(1,
'project');
607 $morehtmlref .=
'</div>';
610 if (!$user->hasRight(
'projet',
'all',
'lire')) {
611 $objectsListId =
$object->getProjectsAuthorizedForUser($user, 0, 0);
612 $object->next_prev_filter =
"rowid IN (".$db->sanitize(count($objectsListId) ? implode(
',', array_keys($objectsListId)) :
'0').
")";
615 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
617 print
'<div class="fichecenter">';
618 print
'<div class="fichehalfleft">';
619 print
'<div class="underbanner clearboth"></div>';
621 print
'<table class="border tableforfield centpercent">';
625 print
'<tr><td class="tdtop">';
626 print $langs->trans(
"Usage");
630 print
'<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_opportunity ?
' checked="checked"' :
'')).
'"> ';
631 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
632 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
636 print
'<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_task ?
' checked="checked"' :
'')).
'"> ';
637 $htmltext = $langs->trans(
"ProjectFollowTasks");
638 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
642 print
'<input type="checkbox" disabled name="usage_bill_time"'.(GETPOSTISSET(
'usage_bill_time') ? (
GETPOST(
'usage_bill_time',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_bill_time ?
' checked="checked"' :
'')).
'"> ';
643 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
644 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
647 if (isModEnabled(
'eventorganization')) {
648 print
'<input type="checkbox" disabled name="usage_organize_event"'.(GETPOSTISSET(
'usage_organize_event') ? (
GETPOST(
'usage_organize_event',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_organize_event ?
' checked="checked"' :
'')).
'"> ';
649 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
650 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
656 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
658 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
659 print $langs->trans(
'SharedProject');
661 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
662 print $langs->trans(
'PrivateProject');
667 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
668 if (!is_null(
$object->budget_amount) && strcmp(
$object->budget_amount,
'')) {
669 print
'<span class="amount">'.price(
$object->budget_amount, 0, $langs, 1, 0, 0, $conf->currency).
'</span>';
674 print
'<tr><td>'.$langs->trans(
"Dates").
'</td><td>';
676 print($start ? $start :
'?');
679 print($end ? $end :
'?');
687 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
692 print
'<div class="fichehalfright">';
693 print
'<div class="underbanner clearboth"></div>';
695 print
'<table class="border tableforfield centpercent">';
698 print
'<td class="titlefield tdtop">'.$langs->trans(
"Description").
'</td><td>';
703 if (isModEnabled(
'category')) {
704 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
705 print $form->showCategories(
$object->id, Categorie::TYPE_PROJECT, 1);
714 print
'<div class="clearboth"></div>';
721if ($action ==
'create' && $user->hasRight(
'projet',
'creer') && (empty(
$object->thirdparty->id) || $userWrite > 0)) {
722 if ($id > 0 || !empty($ref)) {
728 $projectoktoentertime = 1;
730 $projectoktoentertime = 0;
731 print
'<div class="warning">';
732 $langs->load(
"errors");
733 print $langs->trans(
"WarningProjectClosed");
738 $projectoktoentertime = 0;
739 print
'<div class="warning">';
740 $langs->load(
"errors");
741 print $langs->trans(
"WarningProjectDraft");
745 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'" method="POST">';
746 print
'<input type="hidden" name="token" value="'.newToken().
'">';
747 print
'<input type="hidden" name="action" value="createtask">';
748 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
750 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
755 print
'<div class="div-table-responsive-no-min">';
756 print
'<table class="border centpercent">';
761 require_once DOL_DOCUMENT_ROOT.
"/core/modules/project/task/" .
getDolGlobalString(
'PROJECT_TASK_ADDON').
'.php';
762 $modTask =
new $classnamemodtask();
763 '@phan-var-force ModeleNumRefTask $modTask';
764 $defaultref = $modTask->getNextValue(
$object->thirdparty, $object);
767 if (is_numeric($defaultref) && $defaultref <= 0) {
772 print
'<tr><td class="titlefieldcreate"><span class="fieldrequired">'.$langs->trans(
"Ref").
'</span></td><td>';
773 if (empty($duplicate_code_error)) {
774 print(GETPOSTISSET(
"ref") ?
GETPOST(
"ref",
'alpha') : $defaultref);
778 print
'<input type="hidden" name="taskref" value="'.(GETPOSTISSET(
"ref") ?
GETPOST(
"ref",
'alpha') : $defaultref).
'">';
782 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td><td>';
783 print
'<input type="text" name="label" autofocus class="minwidth500" value="'.$label.
'">';
787 print
'<tr><td class="fieldrequired">'.$langs->trans(
"ChildOfProjectTask").
'</td><td>';
788 print
img_picto(
'',
'project',
'class="pictofixedwidth"');
789 if ($projectoktoentertime) {
790 $formother->selectProjectTasks(
GETPOST(
'task_parent'), empty($projectid) ?
$object->id : $projectid,
'task_parent', 0, 0, 1, 1, 0,
'0,1',
'maxwidth500 widthcentpercentminusxx');
792 $formother->selectProjectTasks(
GETPOST(
'task_parent'), empty($projectid) ?
$object->id : $projectid,
'task_parent', 0, 0, 1, 1, 0,
'',
'maxwidth500 widthcentpercentminusxx');
796 $contactsofproject = (empty(
$object->id) ?
'' :
$object->getListContactId(
'internal'));
799 print
'<tr><td>'.$langs->trans(
"AffectedTo").
'</td><td>';
800 print
img_picto(
'',
'user',
'class="pictofixedwidth"');
801 if (is_array($contactsofproject) && count($contactsofproject)) {
802 print $form->select_dolusers($user->id,
'userid', 0,
'', 0,
'', $contactsofproject, 0, 0, 0,
'', 0,
'',
'maxwidth500 widthcentpercentminusx');
804 if ((isset($projectid) && $projectid > 0) ||
$object->id > 0) {
805 print
'<span class="opacitymedium">'.$langs->trans(
"NoUserAssignedToTheProject").
'</span>';
807 print $form->select_dolusers($user->id,
'userid', 0,
'', 0,
'',
'', 0, 0, 0,
'', 0,
'',
'maxwidth500 widthcentpercentminusx');
813 print
'<tr><td>'.$langs->trans(
"Billable").
'</td><td>';
814 print $form->selectyesno(
'billable');
818 print
'<tr><td>'.$langs->trans(
"DateStart").
'</td><td>';
819 print
img_picto(
'',
'action',
'class="pictofixedwidth"');
820 print $form->selectDate((!empty($date_start) ? $date_start :
''),
'date_start', 1, 1, 0,
'', 1, 1);
824 print
'<tr><td>'.$langs->trans(
"DateEnd").
'</td><td>';
825 print
img_picto(
'',
'action',
'class="pictofixedwidth"');
826 print $form->selectDate((!empty($date_end) ? $date_end : -1),
'date_end', -1, 1, 0,
'', 1, 1);
830 print
'<tr><td>'.$langs->trans(
"PlannedWorkload").
'</td><td>';
831 print
img_picto(
'',
'clock',
'class="pictofixedwidth"');
832 print $form->select_duration(
'planned_workload', $planned_workload, 0,
'text');
836 print
'<tr><td>'.$langs->trans(
"ProgressDeclared").
'</td><td colspan="3">';
837 print
img_picto(
'',
'fa-percent',
'class="pictofixedwidth"');
838 print $formother->select_percent($progress,
'progress', 0, 5, 0, 100, 1);
842 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td>';
846 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
851 $doleditor =
new DolEditor(
'description',
$object->description,
'', 80,
'dolibarr_details',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), $nbrows,
'90%');
852 print $doleditor->Create();
856 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
857 print
img_picto(
'',
'currency',
'class="pictofixedwidth"');
858 print
'<input size="8" type="text" name="budget_amount" value="'.dol_escape_htmltag(GETPOSTISSET(
'budget_amount') ?
GETPOST(
'budget_amount') :
'').
'"></td>';
862 $parameters = array(
'arrayfields' => &$arrayfields);
863 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $taskstatic, $action);
864 print $hookmanager->resPrint;
866 if (empty($reshook) && !empty($extrafields->attributes[$taskstatic->table_element][
'label'])) {
867 print $taskstatic->showOptionals($extrafields,
'edit');
875 print $form->buttonsSaveCancel(
"Add");
878} elseif ($id > 0 || !empty($ref)) {
879 $selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage);
886 $linktocreatetaskParam = array();
887 $linktocreatetaskUserRight =
false;
888 if ($user->hasRight(
'projet',
'all',
'creer') || $user->hasRight(
'projet',
'creer')) {
889 if (
$object->public || $userWrite > 0) {
890 $linktocreatetaskUserRight =
true;
892 $linktocreatetaskParam[
'attr'][
'title'] = $langs->trans(
"NotOwnerOfProject");
896 $linktocreatetask =
dolGetButtonTitle($langs->trans(
'AddTask'),
'',
'fa fa-plus-circle', DOL_URL_ROOT.
'/projet/tasks.php?action=create'.$param.
'&backtopage='.urlencode($_SERVER[
'PHP_SELF'].
'?id='.
$object->id),
'', (
int) $linktocreatetaskUserRight, $linktocreatetaskParam);
898 print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'">';
899 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
900 print
'<input type="hidden" name="token" value="'.newToken().
'">';
901 print
'<input type="hidden" name="action" value="list">';
902 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
903 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
904 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
905 print
'<input type="hidden" name="page" value="'.$page.
'">';
906 print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
908 $title = $langs->trans(
"ListOfTasks");
909 $linktotasks =
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/projet/tasks.php?id='.
$object->id,
'', 1, array(
'morecss' =>
'reposition btnTitleSelected'));
910 $linktotasks .=
dolGetButtonTitle($langs->trans(
'ViewGantt'),
'',
'fa fa-stream imgforviewmode', DOL_URL_ROOT.
'/projet/ganttview.php?id='.
$object->id.
'&withproject=1',
'', 1, array(
'morecss' =>
'reposition marginleftonly'));
913 print
load_fiche_titre($title, $linktotasks.
' '.$linktocreatetask,
'projecttask', 0,
'',
'', $massactionbutton);
915 $objecttmp =
new Task($db);
916 $trackid =
'task'.$taskstatic->id;
917 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
921 $filteronthirdpartyid = $socid;
922 $tasksarray = $taskstatic->getTasksArray(0, 0,
$object->id, $filteronthirdpartyid, 0,
'', -1, $morewherefilter, 0, 0, $extrafields, 1, $search_array_options, 1, 1, $sortfield, $sortorder);
925 $tmpuser =
new User($db);
926 if ($search_user_id > 0) {
927 $tmpuser->fetch($search_user_id);
930 $tasksrole = ($tmpuser->id > 0 ? $taskstatic->getUserRolesForProjectsOrTasks(
null, $tmpuser,
$object->id, 0) :
'');
934 if (!empty($conf->use_javascript_ajax)) {
935 include DOL_DOCUMENT_ROOT.
'/core/tpl/ajaxrow.tpl.php';
940 $moreforfilter .=
'<div class="divsearchfield">';
941 $moreforfilter .=
img_picto(
'',
'user',
'class="pictofixedwidth"');
942 $moreforfilter .= $form->select_dolusers($tmpuser->id > 0 ? $tmpuser->id :
'',
'search_user_id', $langs->trans(
"TasksAssignedTo"), null, 0,
'',
'');
943 $moreforfilter .=
'</div>';
944 if ($moreforfilter) {
945 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
946 print $moreforfilter;
951 if ($massactionbutton && $contextpage !=
'poslist') {
952 $selectedfields .= $form->showCheckAddButtons(
'checkforselect', 1);
955 print
'<div class="div-table-responsive">';
956 print
'<table id="tablelines" class="tagtable nobottom liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">';
959 print
'<tr class="liste_titre_filter">';
963 print
'<td class="liste_titre maxwidthsearch">';
964 $searchpicto = $form->showFilterButtons();
969 if (!empty($arrayfields[
't.ref'][
'checked'])) {
970 print
'<td class="liste_titre">';
971 print
'<input class="flat searchstring maxwidth50" type="text" name="search_taskref" value="'.dol_escape_htmltag($search_taskref).
'">';
975 if (!empty($arrayfields[
't.label'][
'checked'])) {
976 print
'<td class="liste_titre">';
977 print
'<input class="flat searchstring maxwidth100" type="text" name="search_tasklabel" value="'.dol_escape_htmltag($search_tasklabel).
'">';
981 if (!empty($arrayfields[
't.description'][
'checked'])) {
982 print
'<td class="liste_titre">';
983 print
'<input class="flat searchstring maxwidth100" type="text" name="search_taskdescription" value="'.dol_escape_htmltag($search_taskdescription).
'">';
987 if (!empty($arrayfields[
't.dateo'][
'checked'])) {
988 print
'<td class="liste_titre center">';
992 print
'<div class="nowrapfordate">';
993 print $form->selectDate($search_date_start_start ? $search_date_start_start : -1,
'search_date_start_start', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
995 print
'<div class="nowrapfordate">';
996 print $form->selectDate($search_date_start_end ? $search_date_start_end : -1,
'search_date_start_end', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
1001 if (!empty($arrayfields[
't.datee'][
'checked'])) {
1002 print
'<td class="liste_titre center">';
1006 print
'<div class="nowrapfordate">';
1007 print $form->selectDate($search_date_end_start ? $search_date_end_start : -1,
'search_date_end_start', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
1009 print
'<div class="nowrapfordate">';
1010 print $form->selectDate($search_date_end_end ? $search_date_end_end : -1,
'search_date_end_end', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
1015 if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
1016 print
'<td class="liste_titre right">';
1017 print
'<input class="flat" type="text" size="4" name="search_planedworkload" value="'.$search_planedworkload.
'">';
1021 if (!empty($arrayfields[
't.duration_effective'][
'checked'])) {
1022 print
'<td class="liste_titre right">';
1023 print
'<input class="flat" type="text" size="4" name="search_timespend" value="'.$search_timespend.
'">';
1027 if (!empty($arrayfields[
't.progress_calculated'][
'checked'])) {
1028 print
'<td class="liste_titre right">';
1029 print
'<input class="flat" type="text" size="4" name="search_progresscalc" value="'.$search_progresscalc.
'">';
1033 if (!empty($arrayfields[
't.progress'][
'checked'])) {
1034 print
'<td class="liste_titre right">';
1035 print
'<input class="flat" type="text" size="4" name="search_progressdeclare" value="'.$search_progressdeclare.
'">';
1040 if (!empty($arrayfields[
't.progress_summary'][
'checked'])) {
1041 print
'<td class="liste_titre right"></td>';
1044 if (
$object->usage_bill_time) {
1045 if (!empty($arrayfields[
't.tobill'][
'checked'])) {
1046 print
'<td class="liste_titre right">';
1050 if (!empty($arrayfields[
't.billed'][
'checked'])) {
1051 print
'<td class="liste_titre right">';
1062 if (!empty($arrayfields[
't.budget_amount'][
'checked'])) {
1063 print
'<td class="liste_titre center">';
1064 print
'<input type="text" class="flat" name="search_task_budget_amount" value="'.$search_task_budget_amount.
'" size="4">';
1068 if (!empty($arrayfields[
'c.assigned'][
'checked'])) {
1069 print
'<td class="liste_titre right">';
1073 if (!empty($arrayfields[
't.billable'][
'checked'])) {
1074 print
'<td class="liste_titre center">';
1075 print $form->selectyesno(
'search_task_billable', $search_task_billable, 0,
false, 1);
1079 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
1081 print
'<td class="liste_titre maxwidthsearch"> </td>';
1085 print
'<td class="liste_titre maxwidthsearch">';
1086 $searchpicto = $form->showFilterButtons();
1093 print
'<tr class="liste_titre nodrag nodrop">';
1096 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
1099 if (!empty($arrayfields[
't.ref'][
'checked'])) {
1101 print_liste_field_titre($arrayfields[
't.ref'][
'label'], $_SERVER[
"PHP_SELF"],
't.ref',
'', $param,
'', $sortfield, $sortorder,
'');
1103 if (!empty($arrayfields[
't.label'][
'checked'])) {
1104 print_liste_field_titre($arrayfields[
't.label'][
'label'], $_SERVER[
"PHP_SELF"],
"t.label",
'', $param,
'', $sortfield, $sortorder,
'');
1106 if (!empty($arrayfields[
't.description'][
'checked'])) {
1107 print_liste_field_titre($arrayfields[
't.description'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'');
1109 if (!empty($arrayfields[
't.dateo'][
'checked'])) {
1110 print_liste_field_titre($arrayfields[
't.dateo'][
'label'], $_SERVER[
"PHP_SELF"],
"t.dateo",
'', $param,
'', $sortfield, $sortorder,
'center ');
1112 if (!empty($arrayfields[
't.datee'][
'checked'])) {
1113 print_liste_field_titre($arrayfields[
't.datee'][
'label'], $_SERVER[
"PHP_SELF"],
"t.datee",
'', $param,
'', $sortfield, $sortorder,
'center ');
1115 if (!empty($arrayfields[
't.planned_workload'][
'checked'])) {
1116 print_liste_field_titre($arrayfields[
't.planned_workload'][
'label'], $_SERVER[
"PHP_SELF"],
"t.planned_workload",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1118 if (!empty($arrayfields[
't.duration_effective'][
'checked'])) {
1119 print_liste_field_titre($arrayfields[
't.duration_effective'][
'label'], $_SERVER[
"PHP_SELF"],
"t.duration_effective",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1121 if (!empty($arrayfields[
't.progress_calculated'][
'checked'])) {
1122 print_liste_field_titre($arrayfields[
't.progress_calculated'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1124 if (!empty($arrayfields[
't.progress'][
'checked'])) {
1125 print_liste_field_titre($arrayfields[
't.progress'][
'label'], $_SERVER[
"PHP_SELF"],
"t.progress",
'', $param,
'', $sortfield, $sortorder,
'right ',
'', 1);
1127 if (!empty($arrayfields[
't.progress_summary'][
'checked'])) {
1128 print_liste_field_titre($arrayfields[
't.progress_summary'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'center ',
'', 1);
1130 if (
$object->usage_bill_time) {
1131 if (!empty($arrayfields[
't.tobill'][
'checked'])) {
1132 print_liste_field_titre($arrayfields[
't.tobill'][
'label'], $_SERVER[
"PHP_SELF"],
"t.tobill",
'', $param,
'', $sortfield, $sortorder,
'right ');
1134 if (!empty($arrayfields[
't.billed'][
'checked'])) {
1135 print_liste_field_titre($arrayfields[
't.billed'][
'label'], $_SERVER[
"PHP_SELF"],
"t.billed",
'', $param,
'', $sortfield, $sortorder,
'right ');
1145 if (!empty($arrayfields[
't.budget_amount'][
'checked'])) {
1146 print_liste_field_titre($arrayfields[
't.budget_amount'][
'label'], $_SERVER[
"PHP_SELF"],
"t.budget_amount",
"", $param,
'', $sortfield, $sortorder,
'center ');
1149 if (!empty($arrayfields[
'c.assigned'][
'checked'])) {
1150 print_liste_field_titre($arrayfields[
'c.assigned'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'center ',
'');
1153 if (!empty($arrayfields[
't.billable'][
'checked'])) {
1154 print_liste_field_titre($arrayfields[
't.billable'][
'label'], $_SERVER[
"PHP_SELF"],
"",
'', $param,
'', $sortfield, $sortorder,
'center ',
'');
1157 $disablesortlink = 1;
1158 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
1160 $parameters = array(
'arrayfields' => $arrayfields,
'param' => $param,
'sortfield' => $sortfield,
'sortorder' => $sortorder);
1161 $reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters);
1162 print $hookmanager->resPrint;
1166 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'center maxwidthsearch ');
1171 if (count($tasksarray) > 0) {
1175 $nboftaskshown =
projectLinesa($j, 0, $tasksarray, $level,
'', 0, $tasksrole, (
string)
$object->id, 1,
$object->id,
'', (
$object->usage_bill_time ? 1 : 0), $arrayfields, $arrayofselected);
1177 $colspan = count($arrayfields);
1178 if (
$object->usage_bill_time) {
1181 print
'<tr class="oddeven"><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoTasks").
'</span></td></tr>';
1192 if ($user->hasRight(
'projet',
'all',
'lire')) {
1193 if ($search_user_id == $user->id) {
1194 if ($nboftaskshown < count($tasksrole)) {
1195 include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
1199 if ($nboftaskshown < count($tasksarray) && !
GETPOSTINT(
'search_user_id')) {
1200 include_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
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 to manage a WYSIWYG editor.
Class to manage projects.
const STATUS_CLOSED
Closed status.
const STATUS_DRAFT
Draft status.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
dolSqlDateFilter($datefield, $day_date, $month_date, $year_date, $excludefirstand=0, $gm=false)
Generate a SQL string to make a filter into a range (for second of date until last second of date).
cleanCorruptedTree($db, $tabletocleantree, $fieldfkparent)
Clean corrupted database tree (orphelins linked to a not existing parent), record linked to themself,...
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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.
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...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show 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.
GETPOSTFLOAT($paramname, $rounding='')
Return the value of a $_GET or $_POST supervariable, converted into float.
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.
projectLinesa(&$inc, $parent, &$lines, &$level, $var, $showproject, &$taskrole, $projectsListId='', $addordertick=0, $projectidfortotallink=0, $dummy='', $showbilltime=0, $arrayfields=array(), $arrayofselected=array())
Show task lines with a particular parent.
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.