33require
'../../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
40$langs->loadLangs(array(
'admin',
'errors',
'other',
'projects'));
46$action =
GETPOST(
'action',
'aZ09');
47$modulepart =
GETPOST(
'modulepart',
'aZ09');
49$value =
GETPOST(
'value',
'alpha');
50$label =
GETPOST(
'label',
'alpha');
51$scandir =
GETPOST(
'scan_dir',
'alpha');
59include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
61if ($action ==
'updateMask') {
62 $maskconstproject =
GETPOST(
'maskconstproject',
'aZ09');
63 $maskproject =
GETPOST(
'maskproject',
'alpha');
65 if ($maskconstproject && preg_match(
'/_MASK$/', $maskconstproject)) {
66 $res =
dolibarr_set_const($db, $maskconstproject, $maskproject,
'chaine', 0,
'', $conf->entity);
80if ($action ==
'updateMaskTask') {
81 $maskconstmasktask =
GETPOST(
'maskconsttask',
'aZ09');
82 $masktaskt =
GETPOST(
'masktask',
'alpha');
84 if ($maskconstmasktask && preg_match(
'/_MASK$/', $maskconstmasktask)) {
85 $res =
dolibarr_set_const($db, $maskconstmasktask, $masktaskt,
'chaine', 0,
'', $conf->entity);
97} elseif ($action ==
'specimen') {
98 $modele =
GETPOST(
'module',
'alpha');
101 $project->initAsSpecimen();
106 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
107 foreach ($dirmodels as $reldir) {
108 $file =
dol_buildpath($reldir.
"core/modules/project/doc/pdf_".$modele.
".modules.php", 0);
109 if (file_exists($file)) {
110 $classname =
"pdf_".$modele;
115 if ($classname !==
'') {
118 $module =
new $classname($db);
120 if ($module->write_file($project, $langs) > 0) {
121 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=project&file=SPECIMEN.pdf");
129 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
131} elseif ($action ==
'specimentask') {
132 $modele =
GETPOST(
'module',
'alpha');
135 $project->initAsSpecimen();
140 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
141 foreach ($dirmodels as $reldir) {
142 $file =
dol_buildpath($reldir.
"core/modules/project/task/doc/pdf_".$modele.
".modules.php", 0);
143 if (file_exists($file)) {
144 $classname =
"pdf_".$modele;
149 if ($classname !==
'') {
152 $module =
new $classname($db);
154 if ($module->write_file($project, $langs) > 0) {
155 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=project_task&file=SPECIMEN.pdf");
163 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
165} elseif ($action ==
'set') {
168} elseif ($action ==
'settask') {
171} elseif ($action ==
'del') {
174 if ($conf->global->PROJECT_ADDON_PDF ==
"$value") {
178} elseif ($action ==
'deltask') {
181 if ($conf->global->PROJECT_TASK_ADDON_PDF ==
"$value") {
185} elseif ($action ==
'setdoc') {
194} elseif ($action ==
'setdoctask') {
195 if (
dolibarr_set_const($db,
"PROJECT_TASK_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
198 $conf->global->PROJECT_TASK_ADDON_PDF = $value;
206} elseif ($action ==
'setmod') {
211} elseif ($action ==
'setmodtask') {
215 dolibarr_set_const($db,
"PROJECT_TASK_ADDON", $value,
'chaine', 0,
'', $conf->entity);
216} elseif ($action ==
'updateoptions') {
217 if (
GETPOST(
'PROJECT_USE_SEARCH_TO_SELECT')) {
218 $companysearch =
GETPOST(
'activate_PROJECT_USE_SEARCH_TO_SELECT',
'alpha');
219 if (
dolibarr_set_const($db,
"PROJECT_USE_SEARCH_TO_SELECT", $companysearch,
'chaine', 0,
'', $conf->entity)) {
220 $conf->global->PROJECT_USE_SEARCH_TO_SELECT = $companysearch;
223 if (
GETPOST(
'PROJECT_ALLOW_TO_LINK_FROM_OTHER_COMPANY')) {
224 $projectToSelect =
GETPOST(
'projectToSelect',
'alpha');
225 dolibarr_set_const($db,
'PROJECT_ALLOW_TO_LINK_FROM_OTHER_COMPANY', $projectToSelect,
'chaine', 0,
'', $conf->entity);
227 if (
GETPOST(
'PROJECT_TIMESHEET_PREVENT_AFTER_MONTHS')) {
228 $timesheetFreezeDuration =
GETPOST(
'timesheetFreezeDuration',
'alpha');
229 dolibarr_set_const($db,
'PROJECT_TIMESHEET_PREVENT_AFTER_MONTHS', intval($timesheetFreezeDuration),
'chaine', 0,
'', $conf->entity);
231} elseif (preg_match(
'/^(set|del)_?([A-Z_]+)$/', $action, $reg)) {
233 if (!
dolibarr_set_const($db, $reg[2], ($reg[1] ===
'set' ?
'1' :
'0'),
'chaine', 0,
'', $conf->entity) > 0) {
242$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
244llxHeader(
"", $langs->trans(
"ProjectsSetup"));
246$form =
new Form($db);
248$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
249print
load_fiche_titre($langs->trans(
"ProjectsSetup"), $linkback,
'title_setup');
258$form =
new Form($db);
260print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'">';
261print
'<input type="hidden" name="token" value="'.newToken().
'">';
262print
'<input type="hidden" name="action" value="setmainoptions">';
264print
'<table class="noborder centpercent">';
265print
'<tr class="liste_titre">';
266print
"<td>".$langs->trans(
"Parameters").
"</td>\n";
267print
'<td class="right" width="60">'.$langs->trans(
"Value").
'</td>'.
"\n";
268print
'<td width="80"> </td></tr>'.
"\n";
270print
'<tr class="oddeven">';
271print
'<td width="80%">'.$langs->trans(
"ManageOpportunitiesStatus").
'</td>';
272print
'<td width="60" class="right">';
273print ajax_constantonoff(
"PROJECT_USE_OPPORTUNITIES",
null,
null, 0, 0, 1);
274print
'</td><td class="right">';
279print
'<tr class="oddeven">';
280print
'<td width="80%">'.$langs->trans(
"ManageTasks").
'</td>';
281print
'<td width="60" class="right">';
282print ajax_constantonoff(
"PROJECT_HIDE_TASKS", array(),
null, 1);
283print
'</td><td class="right">';
287print
'</table></form>';
299print
'<div class="div-table-responsive-no-min">';
300print
'<table class="noborder centpercent">';
301print
'<tr class="liste_titre">';
302print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
303print
'<td>'.$langs->trans(
"Description").
'</td>';
304print
'<td>'.$langs->trans(
"Example").
'</td>';
305print
'<td class="center" width="60">'.$langs->trans(
"Activated").
'</td>';
306print
'<td class="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
311foreach ($dirmodels as $reldir) {
315 $handle = opendir($dir);
316 if (is_resource($handle)) {
317 while (($file = readdir($handle)) !==
false) {
318 if (preg_match(
'/^(mod_.*)\.php$/i', $file, $reg)) {
320 $classname = substr($file, 4);
322 require_once $dir.$file.
'.php';
324 $module =
new $file();
327 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
330 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
334 if ($module->isEnabled()) {
335 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
336 print $module->info($langs);
340 print
'<td class="nowrap">';
341 $tmp = $module->getExample();
342 if (preg_match(
'/^Error/', $tmp)) {
343 $langs->load(
"errors");
344 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
345 } elseif ($tmp ==
'NotConfigured') {
346 print $langs->trans($tmp);
352 print
'<td class="center">';
353 if ($conf->global->PROJECT_ADDON ==
'mod_'.$classname) {
354 print
img_picto($langs->trans(
"Activated"),
'switch_on');
356 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.
newToken().
'&value=mod_'.$classname.
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
361 $project->initAsSpecimen();
365 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
366 $nextval = $module->getNextValue($mysoc, $project);
367 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
368 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
370 $htmltooltip .= $nextval.
'<br>';
372 $htmltooltip .= $langs->trans($module->error).
'<br>';
376 print
'<td class="center">';
377 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
397 print
'<div class="div-table-responsive-no-min">';
398 print
'<table class="noborder centpercent">';
399 print
'<tr class="liste_titre">';
400 print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
401 print
'<td>'.$langs->trans(
"Description").
'</td>';
402 print
'<td>'.$langs->trans(
"Example").
'</td>';
403 print
'<td class="center" width="60">'.$langs->trans(
"Activated").
'</td>';
404 print
'<td class="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
409 foreach ($dirmodels as $reldir) {
413 $handle = opendir($dir);
414 if (is_resource($handle)) {
415 while (($file = readdir($handle)) !==
false) {
416 if (preg_match(
'/^(mod_.*)\.php$/i', $file, $reg)) {
418 $classname = substr($file, 4);
420 require_once $dir.$file.
'.php';
422 $module =
new $file();
425 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
428 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
432 if ($module->isEnabled()) {
433 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
434 print $module->info($langs);
438 print
'<td class="nowrap">';
439 $tmp = $module->getExample();
440 if (preg_match(
'/^Error/', $tmp)) {
441 $langs->load(
"errors");
442 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
443 } elseif ($tmp ==
'NotConfigured') {
444 print $langs->trans($tmp);
450 print
'<td class="center">';
451 if ($conf->global->PROJECT_TASK_ADDON ==
'mod_'.$classname) {
452 print
img_picto($langs->trans(
"Activated"),
'switch_on');
454 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmodtask&token='.
newToken().
'&value=mod_'.$classname.
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
459 $project->initAsSpecimen();
463 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
464 $nextval = $module->getNextValue($mysoc, $project);
465 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
466 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
468 $htmltooltip .= $nextval.
'<br>';
470 $htmltooltip .= $langs->trans($module->error).
'<br>';
474 print
'<td class="center">';
475 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
504$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
505$sql .=
" WHERE type = '".$db->escape($type).
"'";
506$sql .=
" AND entity = ".$conf->entity;
508$resql = $db->query($sql);
511 $num_rows = $db->num_rows($resql);
512 while ($i < $num_rows) {
513 $array = $db->fetch_array($resql);
514 if (is_array($array)) {
515 array_push($def, $array[0]);
523print
'<div class="div-table-responsive-no-min">';
524print
'<table class="noborder" width="100%">'.
"\n";
525print
'<tr class="liste_titre">'.
"\n";
526print
' <td width="100">'.$langs->trans(
"Name").
"</td>\n";
527print
" <td>".$langs->trans(
"Description").
"</td>\n";
528print
'<td class="center" width="60">'.$langs->trans(
"Activated").
"</td>\n";
529print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
530print
'<td class="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
531print
'<td class="center" width="80">'.$langs->trans(
"Preview").
'</td>';
537foreach ($dirmodels as $reldir) {
538 foreach (array(
'',
'/doc') as $valdir) {
539 $dir =
dol_buildpath($reldir.
"core/modules/project/".$valdir);
542 $handle = opendir($dir);
543 if (is_resource($handle)) {
544 while (($file = readdir($handle)) !==
false) {
550 foreach ($filelist as $file) {
551 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
552 if (file_exists($dir.
'/'.$file)) {
553 $name = substr($file, 4,
dol_strlen($file) - 16);
554 $classname = substr($file, 0,
dol_strlen($file) - 12);
556 require_once $dir.
'/'.$file;
557 $module =
new $classname($db);
559 $modulequalified = 1;
560 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
561 $modulequalified = 0;
563 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
564 $modulequalified = 0;
567 if ($modulequalified) {
568 print
'<tr class="oddeven"><td width="100">';
569 print(empty($module->name) ? $name : $module->
name);
571 if (method_exists($module,
'info')) {
572 print $module->info($langs);
574 print $module->description;
579 if (in_array($name, $def)) {
580 print
"<td class=\"center\">\n";
581 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">';
582 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
586 print
"<td class=\"center\">\n";
587 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=set&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
592 print
"<td class=\"center\">";
593 if ($conf->global->PROJECT_ADDON_PDF ==
"$name") {
594 print
img_picto($langs->trans(
"Default"),
'on');
596 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
601 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
602 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
603 if ($module->type ==
'pdf') {
604 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
606 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
607 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
609 print
'<td class="center">';
610 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
614 print
'<td class="center">';
615 if ($module->type ==
'pdf') {
616 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'bill').
'</a>';
618 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
646 $type =
'project_task';
650 $sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
651 $sql .=
" WHERE type = '".$db->escape($type).
"'";
652 $sql .=
" AND entity = ".$conf->entity;
654 $resql = $db->query($sql);
657 $num_rows = $db->num_rows($resql);
658 while ($i < $num_rows) {
659 $array = $db->fetch_array($resql);
660 if (is_array($array)) {
661 array_push($def, $array[0]);
669 print
'<div class="div-table-responsive-no-min">';
670 print
'<table class="noborder" width="100%">'.
"\n";
671 print
'<tr class="liste_titre">'.
"\n";
672 print
' <td width="100">'.$langs->trans(
"Name").
"</td>\n";
673 print
" <td>".$langs->trans(
"Description").
"</td>\n";
674 print
'<td class="center" width="60">'.$langs->trans(
"Activated").
"</td>\n";
675 print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
676 print
'<td class="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
677 print
'<td class="center" width="80">'.$langs->trans(
"Preview").
'</td>';
682 foreach ($dirmodels as $reldir) {
683 foreach (array(
'',
'/doc') as $valdir) {
684 $dir =
dol_buildpath($reldir.
"core/modules/project/task/".$valdir);
687 $handle = opendir($dir);
688 if (is_resource($handle)) {
689 while (($file = readdir($handle)) !==
false) {
695 foreach ($filelist as $file) {
696 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
697 if (file_exists($dir.
'/'.$file)) {
698 $name = substr($file, 4,
dol_strlen($file) - 16);
699 $classname = substr($file, 0,
dol_strlen($file) - 12);
701 require_once $dir.
'/'.$file;
702 $module =
new $classname($db);
704 $modulequalified = 1;
705 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
706 $modulequalified = 0;
708 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
709 $modulequalified = 0;
712 if ($modulequalified) {
713 print
'<tr class="oddeven"><td width="100">';
714 print(empty($module->name) ? $name : $module->
name);
716 if (method_exists($module,
'info')) {
717 print $module->info($langs);
719 print $module->description;
724 if (in_array($name, $def)) {
725 print
'<td class="center">'.
"\n";
726 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=deltask&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">';
727 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
731 print
'<td class="center">'.
"\n";
732 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=settask&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
737 print
'<td class="center">';
738 if ($conf->global->PROJECT_TASK_ADDON_PDF ==
"$name") {
739 print
img_picto($langs->trans(
"Default"),
'on');
741 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoctask&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
746 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
747 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
748 if ($module->type ==
'pdf') {
749 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
751 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
752 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
754 print
'<td class="center">';
755 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
759 print
'<td class="center">';
760 if ($module->type ==
'pdf') {
761 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimentask&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'bill').
'</a>';
763 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
785$form =
new Form($db);
787print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'">';
788print
'<input type="hidden" name="token" value="'.newToken().
'">';
789print
'<input type="hidden" name="action" value="updateoptions">';
790print
'<input type="hidden" name="page_y" value="">';
792print
'<div class="div-table-responsive-no-min">';
793print
'<table class="noborder centpercent">';
794print
'<tr class="liste_titre">';
795print
"<td>".$langs->trans(
"Parameters").
"</td>\n";
796print
'<td class="right" width="60">'.$langs->trans(
"Value").
'</td>'.
"\n";
797print
'<td width="80"> </td></tr>'.
"\n";
799print
'<tr class="oddeven">';
800print
'<td width="80%">'.$langs->trans(
"UseSearchToSelectProject").
'</td>';
801if (!$conf->use_javascript_ajax) {
802 print
'<td class="nowrap right" colspan="2">';
803 print $langs->trans(
"NotAvailableWhenAjaxDisabled");
806 print
'<td width="60" class="right">';
807 $arrval = array(
'0' => $langs->trans(
"No"),
808 '1' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 1).
')',
809 '2' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 2).
')',
810 '3' => $langs->trans(
"Yes").
' ('.$langs->trans(
"NumberOfKeyToSearch", 3).
')',
812 print $form->selectarray(
"activate_PROJECT_USE_SEARCH_TO_SELECT", $arrval,
getDolGlobalString(
"PROJECT_USE_SEARCH_TO_SELECT"));
813 print
'</td><td class="right">';
814 print
'<input type="submit" class="button small reposition" name="PROJECT_USE_SEARCH_TO_SELECT" value="'.$langs->trans(
"Modify").
'">';
819print
'<tr class="oddeven">';
820print
'<td>'.$langs->trans(
"AllowToSelectProjectFromOtherCompany").
'</td>';
822print
'<td class="right" width="60" colspan="2">';
823print
'<input type="text" id="projectToSelect" name="projectToSelect" value="' .
getDolGlobalString(
'PROJECT_ALLOW_TO_LINK_FROM_OTHER_COMPANY').
'"/> ';
824print $form->textwithpicto(
'', $langs->trans(
'AllowToLinkFromOtherCompany'));
825print
'<input type="submit" class="button small reposition" name="PROJECT_ALLOW_TO_LINK_FROM_OTHER_COMPANY" value="'.$langs->trans(
"Modify").
'">';
829$key =
'PROJECT_CLASSIFY_CLOSED_WHEN_ALL_TASKS_DONE';
830echo
'<tr class="oddeven">',
832$form->textwithpicto($langs->transnoentities($key), $langs->transnoentities($key .
'_help')),
834'<td class="right" colspan="2">',
835ajax_constantonoff($key),
839print
'<tr class="oddeven">';
840print
'<td>'.$langs->trans(
"TimesheetPreventAfterFollowingMonths").
'</td>';
842print
'<td class="right" width="60" colspan="2">';
843print
'<input type="number" class="width50" id="timesheetFreezeDuration" name="timesheetFreezeDuration" min="0" step="1" value="' .
getDolGlobalString(
'PROJECT_TIMESHEET_PREVENT_AFTER_MONTHS').
'"/> ';
844print
'<input type="submit" class="button small reposition" name="PROJECT_TIMESHEET_PREVENT_AFTER_MONTHS" value="'.$langs->trans(
"Modify").
'">';
848print
'<tr class="oddeven">';
849print
'<td class="left">';
850print $form->textwithpicto($langs->transnoentities(
'PROJECT_DISPLAY_LINKED_BY_CONTACT'), $langs->transnoentities(
'PROJECT_DISPLAY_LINKED_BY_CONTACT_help'));
852print
'<td class="right" colspan="2">';
853print ajax_constantonoff(
'PROJECT_DISPLAY_LINKED_BY_CONTACT');
addDocumentModel($name, $type, $label='', $description='')
Add document model used by doc generator.
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
delDocumentModel($name, $type)
Delete document model used by doc generator.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage projects.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
yn($yesno, $case=1, $color=0)
Return yes or no in current language.
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_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
project_admin_prepare_head()
Prepare array with list of tabs.
$conf db name
Only used if Module[ID]Name translation string is not found.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.