33require
'../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/projet/class/task.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/project.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/modules/project/modules_project.php';
41require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
53$langsLoad = array(
'projects',
'companies');
54if (isModEnabled(
'eventorganization')) {
55 $langsLoad[] =
'eventorganization';
58$langs->loadLangs($langsLoad);
62$action =
GETPOST(
'action',
'aZ09');
63$backtopage =
GETPOST(
'backtopage',
'alpha');
64$backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
65$cancel =
GETPOST(
'cancel',
'alpha');
66$confirm =
GETPOST(
'confirm',
'aZ09');
73$objcanvas =
GETPOST(
"objcanvas",
"alphanohtml");
74$comefromclone =
GETPOST(
"comefromclone",
"alphanohtml");
79$location =
GETPOST(
'location',
'alphanohtml');
82$mine =
GETPOST(
'mode') ==
'mine' ? 1 : 0;
86$hookmanager->initHooks(array(
'projectcard',
'globalcard'));
93if ($id > 0 || !empty($ref)) {
94 $ret =
$object->fetch($id, $ref);
105$extrafields->fetch_name_optionals_label(
$object->table_element);
112if ($id ==
'' && $ref ==
'' && ($action !=
"create" && $action !=
"add" && $action !=
"update" && !
GETPOST(
"cancel"))) {
116$permissiontoadd = $user->hasRight(
'projet',
'creer');
117$permissiontodelete = $user->hasRight(
'projet',
'supprimer');
118$permissiondellink = $user->hasRight(
'projet',
'creer');
119$permissiontoeditextra = $permissiontoadd;
121if (
GETPOST(
'attribute',
'aZ09') && isset($extrafields->attributes[
$object->table_element][
'perms'][
GETPOST(
'attribute',
'aZ09')])) {
123 $permissiontoeditextra =
dol_eval((
string) $extrafields->attributes[
$object->table_element][
'perms'][
GETPOST(
'attribute',
'aZ09')]);
133$parameters = array(
'id' => $socid,
'objcanvas' => $objcanvas);
134$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
139if (empty($reshook)) {
140 $backurlforlist = DOL_URL_ROOT.
'/projet/list.php';
144 if (
GETPOST(
"comefromclone") == 1) {
145 $result =
$object->delete($user);
147 header(
"Location: index.php");
151 setEventMessages($langs->trans(
"CantRemoveProject", $langs->transnoentitiesnoconv(
"ProjectOverview")),
null,
'errors');
156 if (empty($backtopage) || ($cancel && empty($id))) {
157 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
158 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
159 $backtopage = $backurlforlist;
161 $backtopage = DOL_URL_ROOT.
'/projet/card.php?id='.((!empty($id) &&
$id > 0) ? $id :
'__ID__');
167 if (!empty($backtopageforcancel)) {
168 header(
"Location: ".$backtopageforcancel);
170 } elseif (!empty($backtopage)) {
171 header(
"Location: ".$backtopage);
177 include DOL_DOCUMENT_ROOT.
'/core/actions_dellink.inc.php';
180 if ($action ==
'confirm_setdraft' && $confirm ==
'yes' && $permissiontoadd) {
181 $result =
$object->setStatut($object::STATUS_DRAFT,
null,
'',
'PROJECT_MODIFY');
191 $object->statut = $object::STATUS_DRAFT;
195 if ($action ==
'add' && $permissiontoadd) {
198 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")),
null,
'errors');
202 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"ProjectLabel")),
null,
'errors');
207 if (
GETPOST(
'usage_opportunity') !=
'' && !(
GETPOST(
'opp_status') > 0)) {
209 setEventMessages($langs->trans(
"ErrorOppStatusRequiredIfUsage"),
null,
'errors');
211 if (
GETPOST(
'opp_amount') !=
'' && !(
GETPOST(
'opp_status') > 0)) {
213 setEventMessages($langs->trans(
"ErrorOppStatusRequiredIfAmount"),
null,
'errors');
236 $object->date_start = $date_start;
238 $object->date_start_event = $date_start_event;
239 $object->date_end_event = $date_end_event;
242 $object->opp_status = $opp_status;
243 $object->opp_percent = $opp_percent;
244 $object->usage_opportunity = (
GETPOST(
'usage_opportunity',
'alpha') ==
'on' ? 1 : 0);
245 $object->usage_task = (
GETPOST(
'usage_task',
'alpha') ==
'on' ? 1 : 0);
246 $object->usage_bill_time = (
GETPOST(
'usage_bill_time',
'alpha') ==
'on' ? 1 : 0);
247 $object->usage_organize_event = (
GETPOST(
'usage_organize_event',
'alpha') ==
'on' ? 1 : 0);
250 $ret = $extrafields->setOptionalsFromPost(
null,
$object);
255 $result =
$object->create($user);
256 if (!$error && $result > 0) {
258 $typeofcontact =
GETPOST(
'typeofcontact');
259 $result =
$object->add_contact($user->id, $typeofcontact,
'internal');
265 } elseif ($result < 0) {
266 $langs->load(
"errors");
271 $langs->load(
"errors");
275 if (!$error && !empty(
$object->id) > 0) {
277 $categories =
GETPOST(
'categories',
'array');
278 $result =
$object->setCategories($categories);
280 $langs->load(
"errors");
289 if (!empty($backtopage)) {
290 $backtopage = preg_replace(
'/--IDFORBACKTOPAGE--|__ID__/', (
string)
$object->id, $backtopage);
291 $backtopage = $backtopage.
'&projectid='.
$object->id;
292 header(
"Location: ".$backtopage);
295 header(
"Location:card.php?id=".
$object->id);
300 unset($_POST[
"ref"]);
308 if ($action ==
'update' && empty(
GETPOST(
'cancel')) && $permissiontoadd) {
311 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")),
null,
'errors');
315 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"ProjectLabel")),
null,
'errors');
323 $old_start_date =
$object->date_start;
332 $object->date_start = (!
GETPOST(
'projectstart')) ?
'' : $date_start;
334 $object->date_start_event = (!
GETPOST(
'date_start_event')) ?
'' : $date_start_event;
335 $object->date_end_event = (!
GETPOST(
'date_end_event')) ?
'' : $date_end_event;
337 if (GETPOSTISSET(
'opp_amount')) {
340 if (GETPOSTISSET(
'budget_amount')) {
343 if (GETPOSTISSET(
'opp_status')) {
344 $object->opp_status = $opp_status;
346 if (GETPOSTISSET(
'opp_percent')) {
347 $object->opp_percent = $opp_percent;
349 $object->usage_opportunity = (
GETPOST(
'usage_opportunity',
'alpha') ==
'on' ? 1 : 0);
350 $object->usage_task = (
GETPOST(
'usage_task',
'alpha') ==
'on' ? 1 : 0);
351 $object->usage_bill_time = (
GETPOST(
'usage_bill_time',
'alpha') ==
'on' ? 1 : 0);
352 $object->usage_organize_event = (
GETPOST(
'usage_organize_event',
'alpha') ==
'on' ? 1 : 0);
355 $ret = $extrafields->setOptionalsFromPost(
null,
$object,
'@GETPOSTISSET');
365 setEventMessages($langs->trans(
"ErrorOppStatusRequiredIfAmount"),
null,
'errors');
369 if ((
int)
$object->thirdparty->client == 0 || (
int)
$object->thirdparty->client == 2) {
371 $idoppstatuswon = (int)
dol_getIdFromCode($db,
'WON',
'c_lead_status',
'code',
'rowid');
373 if (
$object->opp_status == $idoppstatuswon) {
375 if (!empty(
$object->thirdparty) && !empty(
$object->thirdparty->id)) {
376 $object->thirdparty->setAsCustomer();
384 $result =
$object->update($user);
394 $categories =
GETPOST(
'categories',
'array');
395 $result =
$object->setCategories($categories);
404 if (
GETPOST(
"reportdate") && (
$object->date_start != $old_start_date)) {
405 $result =
$object->shiftTaskDate((
int) $old_start_date);
415 $resclose =
$object->setClose($user);
438 if ($action ==
'set_opp_status' && $user->hasRight(
'projet',
'creer')) {
439 if (GETPOSTISSET(
'opp_status')) {
440 $object->opp_status = $opp_status;
442 if (GETPOSTISSET(
'opp_percent')) {
443 $object->opp_percent = $opp_percent;
449 setEventMessages($langs->trans(
"ErrorOppStatusRequiredIfAmount"),
null,
'errors');
456 $result =
$object->update($user);
468 if ((
int)
$object->thirdparty->client == 0 || (
int)
$object->thirdparty->client == 2) {
470 $idoppstatuswon = (int)
dol_getIdFromCode($db,
'WON',
'c_lead_status',
'code',
'rowid');
472 if (!$error &&
$object->opp_status == $idoppstatuswon) {
474 if (!empty(
$object->thirdparty) && !empty(
$object->thirdparty->id)) {
475 $object->thirdparty->setAsCustomer();
493 if ($action ==
'builddoc' && $permissiontoadd) {
499 $outputlangs = $langs;
500 if (
GETPOST(
'lang_id',
'aZ09')) {
502 $outputlangs->setDefaultLang(
GETPOST(
'lang_id',
'aZ09'));
504 $result =
$object->generateDocument(
$object->model_pdf, $outputlangs);
514 if ($action ==
'remove_file' && $permissiontoadd) {
516 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
518 $langs->load(
"other");
519 $upload_dir =
$conf->project->multidir_output[
$object->entity];
520 $file = $upload_dir.
'/'.
GETPOST(
'file');
532 if ($action ==
'confirm_validate' && $confirm ==
'yes' && $permissiontoadd) {
533 $result =
$object->setValid($user);
539 if ($action ==
'confirm_close' && $confirm ==
'yes' && $permissiontoadd) {
540 $result =
$object->setClose($user);
546 if ($action ==
'confirm_reopen' && $confirm ==
'yes' && $permissiontoadd) {
547 $result =
$object->setValid($user);
553 if ($action ==
'confirm_delete' && $confirm ==
'yes' && $permissiontodelete) {
555 $result =
$object->delete($user);
559 if (!empty($_SESSION[
'pageforbacktolist']) && !empty($_SESSION[
'pageforbacktolist'][
'project'])) {
560 $tmpurl = $_SESSION[
'pageforbacktolist'][
'project'];
561 $tmpurl = preg_replace(
'/__SOCID__/', (
string)
$object->socid, $tmpurl);
562 $urlback = $tmpurl.(preg_match(
'/\?/', $tmpurl) ?
'&' :
'?').
'restore_lastsearch_values=1';
564 $urlback = DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1';
567 header(
"Location: ".$urlback);
575 if ($action ==
'confirm_clone' && $permissiontoadd && $confirm ==
'yes') {
576 $clone_contacts =
GETPOST(
'clone_contacts') ? 1 : 0;
577 $clone_tasks =
GETPOST(
'clone_tasks') ? 1 : 0;
578 $clone_project_files =
GETPOST(
'clone_project_files') ? 1 : 0;
579 $clone_task_files =
GETPOST(
'clone_task_files') ? 1 : 0;
580 $clone_notes =
GETPOST(
'clone_notes') ? 1 : 0;
581 $move_date =
GETPOST(
'move_date') ? 1 : 0;
584 $result =
$object->createFromClone($user,
$object->id, $clone_contacts, $clone_tasks, $clone_project_files, $clone_task_files, $clone_notes, $move_date, 0, $clone_thirdparty);
590 $newobject->fetch($result);
592 setEventMessages($langs->trans(
"ProjectCreatedInDolibarr", $newobject->ref),
null,
'mesgs');
594 header(
'Location: '.$_SERVER[
'PHP_SELF'].
'?id='.$result.
'&action=edit&comefromclone=1');
600 if ($action ==
'update_extras' && $permissiontoeditextra) {
603 $attribute_name =
GETPOST(
'attribute',
'aZ09');
606 $ret = $extrafields->setOptionalsFromPost(
null,
$object, $attribute_name);
612 $result =
$object->updateExtraField($attribute_name,
'PROJECT_MODIFY');
620 $action =
'edit_extras';
625 $triggersendname =
'PROJECT_SENTBYMAIL';
627 $autocopy =
'MAIN_MAIL_AUTOCOPY_PROJECT_TO';
628 $trackid =
'proj'.$object->id;
629 include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
637$form =
new Form($db);
640$userstatic =
new User($db);
642$title = $langs->trans(
"Project").
' - '.
$object->ref.(!empty(
$object->thirdparty->name) ?
' - '.$object->thirdparty->name :
'').(!empty(
$object->title) ?
' - '.$object->title :
'');
644 $title =
$object->ref.(!empty(
$object->thirdparty->name) ?
' - '.$object->thirdparty->name :
'').(!empty(
$object->title) ?
' - '.$object->title :
'');
647$help_url =
"EN:Module_Projects|FR:Module_Projets|ES:Módulo_Proyectos|DE:Modul_Projekte";
649llxHeader(
"", $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-project page-card');
651$titleboth = $langs->trans(
"LeadsOrProjects");
652$titlenew = $langs->trans(
"NewLeadOrProject");
654 $titleboth = $langs->trans(
"Projects");
655 $titlenew = $langs->trans(
"NewProject");
658 $titleboth = $langs->trans(
"Leads");
659 $titlenew = $langs->trans(
"NewLead");
662if ($action ==
'create' && $user->hasRight(
'projet',
'creer')) {
667 $thirdparty =
new Societe($db);
669 $thirdparty->fetch($socid);
674 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
675 print
'<input type="hidden" name="action" value="add">';
676 print
'<input type="hidden" name="token" value="'.newToken().
'">';
677 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
678 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
679 print
'<input type="hidden" name="dol_openinpopup" value="'.$dol_openinpopup.
'">';
683 print
'<table class="border centpercent tableforfieldcreate">';
693 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
694 foreach ($dirmodels as $reldir) {
695 $file =
dol_buildpath($reldir.
"core/modules/project/".$modele.
'.php', 0);
696 if (file_exists($file)) {
698 $classname = $modele;
703 if ($filefound && !empty($classname)) {
705 if (class_exists($classname)) {
706 $modProject =
new $classname();
707 '@phan-var-force ModeleNumRefProjects $modProject';
708 $defaultref = $modProject->getNextValue($thirdparty,
$object);
712 if (is_numeric($defaultref) && $defaultref <= 0) {
718 print
'<tr><td class="titlefieldcreate"><span class="fieldrequired">'.$langs->trans(
"Ref").
'</span></td><td class><input class="maxwidth150onsmartphone" type="text" name="ref" value="'.
dol_escape_htmltag($suggestedref).
'">';
720 print
' '.$form->textwithpicto(
'', $langs->trans(
"YouCanCompleteRef", $suggestedref));
725 print
'<tr><td><span class="fieldrequired">'.$langs->trans(
"Label").
'</span></td><td><input class="width500 maxwidth150onsmartphone" type="text" name="title" value="'.
dol_escape_htmltag(
GETPOST(
"title",
'alphanohtml')).
'" autofocus></td></tr>';
729 print
'<tr><td>'.$langs->trans(
"Parent").
'</td><td class="maxwidthonsmartphone">';
730 print
img_picto(
'',
'project',
'class="pictofixedwidth"');
731 $formproject->select_projects(-1,
'',
'fk_project', 64, 0, 1, 1, 0, 0, 0,
'', 0, 0,
'',
'',
'');
737 print
'<tr><td class="tdtop">';
738 print $langs->trans(
"Usage");
742 print
'<input type="checkbox" id="usage_opportunity" name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') ?
' checked="checked"' :
'') :
' checked="checked"').
'> ';
743 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
744 print
'<label for="usage_opportunity">'.$form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext).
'</label>';
746 print
'$( document ).ready(function() {
747 jQuery("#usage_opportunity").change(function() {
748 if (jQuery("#usage_opportunity").prop("checked")) {
749 console.log("Show opportunities fields");
750 jQuery(".classuseopportunity").show();
752 console.log("Hide opportunities fields "+jQuery("#usage_opportunity").prop("checked"));
753 jQuery(".classuseopportunity").hide();
757 if (GETPOSTISSET(
'usage_opportunity') && !
GETPOST(
'usage_opportunity')) {
758 print
'jQuery(".classuseopportunity").hide();';
765 print
'<input type="checkbox" id="usage_task" name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') ?
' checked="checked"' :
'') :
' checked="checked"').
'> ';
766 $htmltext = $langs->trans(
"ProjectFollowTasks");
767 print
'<label for="usage_task">'.$form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext).
'</label>';
769 print
'$( document ).ready(function() {
770 jQuery("#usage_task").change(function() {
771 if (jQuery("#usage_task").prop("checked")) {
772 console.log("Show task fields");
773 jQuery(".classusetask").show();
775 console.log("Hide tasks fields "+jQuery("#usage_task").prop("checked"));
776 jQuery(".classusetask").hide();
780 if (GETPOSTISSET(
'usage_task') && !
GETPOST(
'usage_task')) {
781 print
'jQuery(".classusetask").hide();';
788 print
'<input type="checkbox" id="usage_bill_time" name="usage_bill_time"'.(GETPOSTISSET(
'usage_bill_time') ? (
GETPOST(
'usage_bill_time',
'alpha') ?
' checked="checked"' :
'') :
'').
'> ';
789 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
790 print
'<label for="usage_bill_time">'.$form->textwithpicto($langs->trans(
"BillTime"), $htmltext).
'</label>';
792 print
'$( document ).ready(function() {
793 jQuery("#usage_bill_time").change(function() {
794 if (jQuery("#usage_bill_time").prop("checked")) {
795 console.log("Show bill time fields");
796 jQuery(".classusebilltime").show();
798 console.log("Hide bill time fields "+jQuery("#usage_bill_time").prop("checked"));
799 jQuery(".classusebilltime").hide();
803 if (GETPOSTISSET(
'usage_bill_time') && !
GETPOST(
'usage_bill_time')) {
804 print
'jQuery(".classusebilltime").hide();';
810 if (isModEnabled(
'eventorganization')) {
811 print
'<input type="checkbox" id="usage_organize_event" name="usage_organize_event"'.(GETPOSTISSET(
'usage_organize_event') ? (
GETPOST(
'usage_organize_event',
'alpha') ?
' checked="checked"' :
'') :
'').
'"> ';
812 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
813 print
'<label for="usage_organize_event">'.$form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext).
'</label>';
815 print
'$( document ).ready(function() {
816 jQuery("#usage_organize_event").change(function() {
817 if (jQuery("#usage_organize_event").prop("checked")) {
818 console.log("Show organize event fields");
819 jQuery(".classuseorganizeevent").show();
821 console.log("Hide organize event fields "+jQuery("#usage_organize_event").prop("checked"));
822 jQuery(".classuseorganizeevent").hide();
826 if (!
GETPOST(
'usage_organize_event')) {
827 print
'jQuery(".classuseorganizeevent").hide();';
837 if (isModEnabled(
'societe')) {
839 print(!
getDolGlobalString(
'PROJECT_THIRDPARTY_REQUIRED') ?
'' :
'<span class="fieldrequired">');
840 print $langs->trans(
"ThirdParty");
842 print
'</td><td class="maxwidthonsmartphone">';
847 $text =
img_picto(
'',
'company',
'class="pictofixedwidth"').$form->select_company(
GETPOSTINT(
'socid'),
'socid', $filter,
'SelectThirdParty', 1, 0, array(), 0,
'minwidth300 widthcentpercentminusxx maxwidth500');
849 $texthelp = $langs->trans(
"IfNeedToUseOtherObjectKeepEmpty");
850 print $form->textwithtooltip($text.
' '.
img_help(), $texthelp, 1);
854 if (!GETPOSTISSET(
'backtopage')) {
855 $url =
'/societe/card.php?action=create&customer=3&fournisseur=0&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?action=create');
856 $newbutton =
'<span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans(
"AddThirdParty").
'"></span>';
859 $jsonclose =
'TODO Not yet implemented';
862 print
' <a href="'.DOL_URL_ROOT.$url.
'">'.$newbutton.
'</a>';
870 print
'<tr><td>'.$langs->trans(
"Status").
'</td><td>';
871 print
'<input type="hidden" name="status" value="'.$status.
'">';
872 print
$object->LibStatut($status, 4);
878 print
'<tr class="classuseopportunity"><td><span class="fieldrequired">'.$langs->trans(
"OpportunityStatus").
'</span></td>';
879 print
'<td class="maxwidthonsmartphone">';
880 print $formproject->selectOpportunityStatus(
'opp_status', GETPOSTISSET(
'opp_status') ?
GETPOST(
'opp_status') :
$object->opp_status, 1, 0, 0, 0,
'', 0, 1);
883 print
' <input class="width50 right" type="text" id="opp_percent" name="opp_percent" title="'.dol_escape_htmltag($langs->trans(
"OpportunityProbability")).
'" value="'.
dol_escape_htmltag(GETPOSTISSET(
'opp_percent') ?
GETPOST(
'opp_percent') :
'').
'"><span class="hideonsmartphone"> %</span>';
884 print
'<input type="hidden" name="opp_percent_not_set" id="opp_percent_not_set" value="'.dol_escape_htmltag(GETPOSTISSET(
'opp_percent') ?
'0' :
'1').
'">';
889 print
'<tr class="classuseopportunity"><td>'.$langs->trans(
"OpportunityAmount").
'</td>';
890 print
'<td><input class="width75 right" type="text" name="opp_amount" value="'.dol_escape_htmltag(GETPOSTISSET(
'opp_amount') ?
GETPOST(
'opp_amount') :
'').
'">';
891 print
' '.$langs->getCurrencySymbol(
$conf->currency);
897 print
'<tr><td>'.$langs->trans(
"Budget").
'</td>';
898 print
'<td><input class="width75 right" type="text" name="budget_amount" value="'.dol_escape_htmltag(GETPOSTISSET(
'budget_amount') ?
GETPOST(
'budget_amount') :
'').
'">';
899 print
' '.$langs->getCurrencySymbol(
$conf->currency);
904 print
'<tr><td>'.$langs->trans(
"Date").(isModEnabled(
'eventorganization') ?
' <span class="classuseorganizeevent">('.$langs->trans(
"Project").
')</span>' :
'').
'</td><td>';
905 print $form->selectDate(($date_start ? $date_start :
''),
'projectstart', 0, 0, 0,
'', 1, 0);
906 print
' <span class="opacitymedium"> '.$langs->trans(
"to").
' </span> ';
907 print $form->selectDate(($date_end ? $date_end : -1),
'projectend', 0, 0, 0,
'', 1, 0);
910 if (isModEnabled(
'eventorganization')) {
912 print
'<tr class="classuseorganizeevent"><td>'.$langs->trans(
"Date").
' ('.$langs->trans(
"Event").
')</td><td>';
913 print $form->selectDate(($date_start_event ? $date_start_event : -1),
'date_start_event', 1, 1, 1,
'', 1, 0);
914 print
' <span class="opacitymedium"> '.$langs->trans(
"to").
' </span> ';
915 print $form->selectDate(($date_end_event ? $date_end_event : -1),
'date_end_event', 1, 1, 1,
'', 1, 0);
919 print
'<tr class="classuseorganizeevent"><td>'.$langs->trans(
"Location").
'</td>';
920 print
'<td><input class="minwidth300 maxwidth500" type="text" name="location" value="'.dol_escape_htmltag($location).
'"></td>';
925 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td>';
927 $doleditor =
new DolEditor(
'description',
GETPOST(
"description",
'restricthtml'),
'', 90,
'dolibarr_notes',
'',
false,
true, isModEnabled(
'fckeditor') &&
getDolGlobalString(
'FCKEDITOR_ENABLE_SOCIETE'), ROWS_3,
'90%');
928 $doleditor->Create();
931 if (isModEnabled(
'category')) {
933 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td colspan="3">';
934 print $form->selectCategories(Categorie::TYPE_PROJECT,
'categories',
$object);
939 print
'<tr><td>'.$langs->trans(
"Visibility").
'</td><td class="maxwidthonsmartphone">';
942 $array[0] = $langs->trans(
"PrivateProject");
945 $array[1] = $langs->trans(
"SharedProject");
948 if (count($array) > 0) {
949 print $form->selectarray(
'public', $array,
GETPOSTINT(
'public') ? 1 : 0, 0, 0, 0,
'', 0, 0, 0,
'',
'', 1);
951 print
'<input type="hidden" name="public" id="public" value="'.(GETPOSTINT(
'public') ? 1 : 0).
'">';
954 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
955 print $langs->trans(
"PrivateProject");
957 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
958 print $langs->trans(
"SharedProject");
964 print
'<tr><td class="tdtop">'.$langs->trans(
"ProjectContactTypeManager").
'</td>';
966 $contactList =
$object->liste_type_contact(
'internal',
'position', 1);
967 $typeofcontact =
GETPOST(
'typeofcontact') ?
GETPOST(
'typeofcontact') :
'PROJECTLEADER';
968 print $form->selectarray(
'typeofcontact', $contactList, $typeofcontact, 0, 0, 0,
'', 0, 0, 0,
'',
'', 1);
972 $parameters = array();
973 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters,
$object, $action);
974 print $hookmanager->resPrint;
975 if (empty($reshook)) {
976 print
$object->showOptionals($extrafields,
'create');
983 print $form->buttonsSaveCancel(
'CreateDraft');
989 print
'<script type="text/javascript">
990 jQuery(document).ready(function() {
991 function change_percent()
993 var element = jQuery("#opp_status option:selected");
994 var defaultpercent = element.attr("defaultpercent");
995 /*if (jQuery("#opp_percent_not_set").val() == "") */
996 jQuery("#opp_percent").val(defaultpercent);
1000 jQuery("#opp_status").change(function() {
1004 jQuery("#usage_task").change(function() {
1005 console.log("We click on usage task "+jQuery("#usage_task").is(":checked"));
1006 if (! jQuery("#usage_task").is(":checked")) {
1007 jQuery("#usage_bill_time").prop("checked", false);
1011 jQuery("#usage_bill_time").change(function() {
1012 console.log("We click on usage to bill time");
1013 if (jQuery("#usage_bill_time").is(":checked")) {
1014 jQuery("#usage_task").prop("checked", true);
1024 $res =
$object->fetch_optionals();
1027 $userAccess =
$object->restrictedProjectArea($user,
'read');
1028 $userWrite =
$object->restrictedProjectArea($user,
'write');
1029 $userDelete =
$object->restrictedProjectArea($user,
'delete');
1035 if ($action ==
'validate') {
1036 $text = $langs->trans(
'ConfirmValidateProject');
1037 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'ValidateProject'), $text,
'confirm_validate',
'', 0, 1);
1040 if ($action ==
'close') {
1041 $text = $langs->trans(
"ConfirmCloseAProject");
1042 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
$object->id, $langs->trans(
"CloseAProject"), $text,
"confirm_close",
'',
'', 1);
1045 if ($action ==
'reopen') {
1046 $text = $langs->trans(
"ConfirmReOpenAProject");
1047 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
$object->id, $langs->trans(
"ReOpenAProject"), $text,
"confirm_reopen",
'',
'', 1);
1050 if ($action ==
'delete') {
1051 $text = $langs->trans(
"ConfirmDeleteAProject");
1052 $task =
new Task($db);
1053 $taskarray = $task->getTasksArray(
null,
null,
$object->id, 0, 0);
1054 $nboftask = count($taskarray);
1056 $text .=
'<br>'.img_warning().
' '.$langs->trans(
"ThisWillAlsoRemoveTasks", $nboftask);
1058 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
$object->id, $langs->trans(
"DeleteAProject"), $text,
"confirm_delete",
'',
'', 1);
1062 if ($action ==
'clone') {
1063 $text = $langs->trans(
"ConfirmCloneProject");
1064 $formquestion = array(
1065 'text' => $langs->trans(
"ConfirmClone"),
1066 0 => array(
'type' =>
'other',
'name' =>
'socid',
'label' => $langs->trans(
"SelectThirdParty"),
'value' => $form->select_company(
GETPOSTINT(
'socid') > 0 ?
GETPOSTINT(
'socid') :
$object->socid,
'socid',
'',
"None", 0, 0, array(), 0,
'minwidth200 maxwidth250')),
1067 1 => array(
'type' =>
'checkbox',
'name' =>
'clone_contacts',
'label' => $langs->trans(
"CloneContacts"),
'value' => true),
1068 2 => array(
'type' =>
'checkbox',
'name' =>
'clone_tasks',
'label' => $langs->trans(
"CloneTasks"),
'value' => true),
1069 3 => array(
'type' =>
'checkbox',
'name' =>
'move_date',
'label' => $langs->trans(
"CloneMoveDate"),
'value' => true),
1070 4 => array(
'type' =>
'checkbox',
'name' =>
'clone_notes',
'label' => $langs->trans(
"CloneNotes"),
'value' => true),
1071 5 => array(
'type' =>
'checkbox',
'name' =>
'clone_project_files',
'label' => $langs->trans(
"CloneProjectFiles"),
'value' => false),
1072 6 => array(
'type' =>
'checkbox',
'name' =>
'clone_task_files',
'label' => $langs->trans(
"CloneTaskFiles"),
'value' => false)
1075 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
$object->id, $langs->trans(
"ToClone"), $text,
"confirm_clone", $formquestion,
'', 1, 400, 590);
1079 $parameters = array(
'formConfirm' => $formconfirm);
1080 $reshook = $hookmanager->executeHooks(
'formConfirm', $parameters,
$object, $action);
1081 if (empty($reshook)) {
1082 $formconfirm .= $hookmanager->resPrint;
1083 } elseif ($reshook > 0) {
1084 $formconfirm = $hookmanager->resPrint;
1091 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
1092 print
'<input type="hidden" name="token" value="'.newToken().
'">';
1093 print
'<input type="hidden" name="action" value="update">';
1094 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
1095 print
'<input type="hidden" name="comefromclone" value="'.$comefromclone.
'">';
1099 if ($action ==
'edit' && $userWrite > 0) {
1102 print
'<table class="border centpercent">';
1106 print
'<tr><td class="titlefield fieldrequired">'.$langs->trans(
"Ref").
'</td>';
1107 print
'<td><input class="width200" name="ref" value="'.$suggestedref.
'">';
1108 print
' '.$form->textwithpicto(
'', $langs->trans(
"YouCanCompleteRef", $suggestedref));
1112 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td>';
1113 print
'<td><input class="quatrevingtpercent" name="title" value="'.dol_escape_htmltag(
$object->title).
'"></td></tr>';
1116 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
'</td><td>';
1117 print
'<select class="flat" name="status" id="status">';
1118 $statuses =
$object->labelStatusShort;
1120 unset($statuses[$object::STATUS_DRAFT]);
1122 foreach ($statuses as $key => $val) {
1123 print
'<option value="'.$key.
'"'.((GETPOSTISSET(
'status') ?
GETPOST(
'status') :
$object->
status) == $key ?
' selected="selected"' :
'').
'>'.$langs->trans($val).
'</option>';
1131 print
'<tr><td>'.$langs->trans(
"Parent").
'</td><td class="maxwidthonsmartphone">';
1132 print
img_picto(
'',
'project',
'class="pictofixedwidth"');
1133 $formproject->select_projects(-1, (
string)
$object->fk_project,
'fk_project', 64, 0, 1, 1, 0, 0, 0,
'', 0, 0,
'',
'',
'');
1139 print
'<tr><td class="tdtop">';
1140 print $langs->trans(
"Usage");
1144 print
'<input type="checkbox" id="usage_opportunity" name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_opportunity ?
' checked="checked"' :
'')).
'> ';
1145 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
1146 print
'<label for="usage_opportunity">'.$form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext).
'</label>';
1148 print
'$( document ).ready(function() {
1149 jQuery("#usage_opportunity").change(function() {
1150 set_usage_opportunity();
1153 set_usage_opportunity();
1155 function set_usage_opportunity() {
1156 console.log("set_usage_opportunity");
1157 if (jQuery("#usage_opportunity").prop("checked")) {
1158 console.log("Show opportunities fields");
1159 jQuery(".classuseopportunity").show();
1161 console.log("Hide opportunities fields "+jQuery("#usage_opportunity").prop("checked"));
1162 jQuery(".classuseopportunity").hide();
1170 print
'<input type="checkbox" id="usage_task" name="usage_task"' . (GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_task ?
' checked="checked"' :
'')) .
'> ';
1171 $htmltext = $langs->trans(
"ProjectFollowTasks");
1172 print
'<label for="usage_task">'.$form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext).
'</label>';
1174 print
'$( document ).ready(function() {
1175 jQuery("#usage_task").change(function() {
1181 function set_usage_task() {
1182 console.log("set_usage_task");
1183 if (jQuery("#usage_task").prop("checked")) {
1184 console.log("Show task fields");
1185 jQuery(".classusetask").show();
1187 console.log("Hide task fields "+jQuery("#usage_task").prop("checked"));
1188 jQuery(".classusetask").hide();
1196 print
'<input type="checkbox" id="usage_bill_time" name="usage_bill_time"' . (GETPOSTISSET(
'usage_bill_time') ? (
GETPOST(
'usage_bill_time',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_bill_time ?
' checked="checked"' :
'')) .
'> ';
1197 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
1198 print
'<label for="usage_bill_time">'.$form->textwithpicto($langs->trans(
"BillTime"), $htmltext).
'</label>';
1200 print
'$( document ).ready(function() {
1201 jQuery("#usage_bill_time").change(function() {
1202 set_usage_bill_time();
1205 set_usage_bill_time();
1207 function set_usage_bill_time() {
1208 console.log("set_usage_bill_time");
1209 if (jQuery("#usage_bill_time").prop("checked")) {
1210 console.log("Show bill time fields");
1211 jQuery(".classusebilltime").show();
1213 console.log("Hide bill time fields "+jQuery("#usage_bill_time").prop("checked"));
1214 jQuery(".classusebilltime").hide();
1221 if (isModEnabled(
'eventorganization')) {
1222 print
'<input type="checkbox" id="usage_organize_event" name="usage_organize_event"'. (GETPOSTISSET(
'usage_organize_event') ? (
GETPOST(
'usage_organize_event',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_organize_event ?
' checked="checked"' :
'')) .
'> ';
1223 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
1224 print
'<label for="usage_organize_event">'.$form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext).
'</label>';
1226 print
'$( document ).ready(function() {
1227 jQuery("#usage_organize_event").change(function() {
1233 function set_usage_event() {
1234 console.log("set_usage_event");
1235 if (jQuery("#usage_organize_event").prop("checked")) {
1236 console.log("Show organize event fields");
1237 jQuery(".classuseorganizeevent").show();
1239 console.log("Hide organize event fields "+jQuery("#usage_organize_event").prop("checked"));
1240 jQuery(".classuseorganizeevent").hide();
1251 if (isModEnabled(
'societe')) {
1253 print(!
getDolGlobalString(
'PROJECT_THIRDPARTY_REQUIRED') ?
'' :
'<span class="fieldrequired">');
1254 print $langs->trans(
"ThirdParty");
1261 $text =
img_picto(
'',
'company',
'class="pictofixedwidth"');
1262 $text .= $form->select_company(!empty(
$object->thirdparty->id) ?
$object->thirdparty->id :
"",
'socid', $filter,
'None', 1, 0, array(), 0,
'minwidth300');
1264 $texthelp = $langs->trans(
"IfNeedToUseOtherObjectKeepEmpty");
1265 print $form->textwithtooltip($text.
' '.
img_help(), $texthelp, 1, 0,
'',
'', 2);
1273 $classfortr = (
$object->usage_opportunity ?
'' :
' hideobject');
1275 print
'<tr class="classuseopportunity'.$classfortr.
'"><td>'.$langs->trans(
"OpportunityStatus").
'</td>';
1278 print $formproject->selectOpportunityStatus(
'opp_status', (
string)
$object->opp_status, 1, 0, 0, 0,
'minwidth150 inline-block valignmiddle', 1, 1);
1281 print
' <input class="width50 right" type="text" id="opp_percent" name="opp_percent" title="'.dol_escape_htmltag($langs->trans(
"OpportunityProbability")).
'" value="'.(GETPOSTISSET(
'opp_percent') ?
GETPOST(
'opp_percent') : (strcmp(
$object->opp_percent,
'') ?
vatrate(
$object->opp_percent) :
'')).
'"> %';
1282 print
'<span id="oldopppercent" class="opacitymedium"></span>';
1285 print
'<div id="divtocloseproject" class="inline-block valign clearboth paddingtop" style="display: none;">';
1286 print
'<input type="checkbox" id="inputcloseproject" name="closeproject" class="valignmiddle" />';
1287 print
'<label for="inputcloseproject" class="opacitymedium valignmiddle">';
1288 print $form->textwithpicto($langs->trans(
"AlsoCloseAProject"), $langs->trans(
"AlsoCloseAProjectTooltip")).
'</label>';
1295 print
'<tr class="classuseopportunity'.$classfortr.
'"><td>'.$langs->trans(
"OpportunityAmount").
'</td>';
1296 print
'<td><input class="width75 right" type="text" name="opp_amount" value="'.(GETPOSTISSET(
'opp_amount') ?
GETPOST(
'opp_amount') : (strcmp(
$object->opp_amount,
'') ?
price2num(
$object->opp_amount) :
'')).
'">';
1297 print $langs->getCurrencySymbol(
$conf->currency);
1303 print
'<tr><td>'.$langs->trans(
"Budget").
'</td>';
1304 print
'<td><input class="width75 right" type="text" name="budget_amount" value="'.(GETPOSTISSET(
'budget_amount') ?
GETPOST(
'budget_amount') : (strcmp(
$object->budget_amount,
'') ?
price2num(
$object->budget_amount) :
'')).
'">';
1305 print $langs->getCurrencySymbol(
$conf->currency);
1310 print
'<tr><td>'.$langs->trans(
"Date").(isModEnabled(
'eventorganization') ?
' <span class="classuseorganizeevent">('.$langs->trans(
"Project").
')</span>' :
'').
'</td><td>';
1311 print $form->selectDate(
$object->date_start ?
$object->date_start : -1,
'projectstart', 0, 0, 0,
'', 1, 0);
1312 print
' <span class="opacitymedium"> '.$langs->trans(
"to").
' </span> ';
1313 print $form->selectDate(
$object->date_end ?
$object->date_end : -1,
'projectend', 0, 0, 0,
'', 1, 0);
1314 $object->getLinesArray(
null, 0);
1316 print
' <span id="divreportdate" class="hidden"> <input type="checkbox" class="valignmiddle" id="reportdate" name="reportdate" value="yes" ';
1317 if ($comefromclone) {
1320 print
'/><label for="reportdate" class="valignmiddle opacitymedium">'.$langs->trans(
"ProjectReportDate").
'</label></span>';
1324 if (isModEnabled(
'eventorganization')) {
1326 print
'<tr class="classuseorganizeevent"><td>'.$langs->trans(
"Date").
' ('.$langs->trans(
"Event").
')</td><td>';
1327 print $form->selectDate(($date_start_event ? $date_start_event : (
$object->date_start_event ?
$object->date_start_event : -1)),
'date_start_event', 1, 1, 1,
'', 1, 0);
1328 print
' <span class="opacitymedium"> '.$langs->trans(
"to").
' </span> ';
1329 print $form->selectDate(($date_end_event ? $date_end_event : (
$object->date_end_event ?
$object->date_end_event : -1)),
'date_end_event', 1, 1, 1,
'', 1, 0);
1333 print
'<tr class="classuseorganizeevent"><td>'.$langs->trans(
"Location").
'</td>';
1334 print
'<td><input class="minwidth300 maxwidth500" type="text" name="location" value="'.dol_escape_htmltag(GETPOSTISSET(
'location') ?
GETPOST(
'location') :
$object->location).
'"></td>';
1339 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td>';
1341 $doleditor =
new DolEditor(
'description',
$object->description,
'', 90,
'dolibarr_notes',
'',
false,
true, isModEnabled(
'fckeditor') &&
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), ROWS_3,
'90%');
1342 $doleditor->Create();
1346 if (isModEnabled(
'category')) {
1347 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
1348 print $form->selectCategories(Categorie::TYPE_PROJECT,
'categories',
$object);
1353 print
'<tr><td>'.$langs->trans(
"Visibility").
'</td><td>';
1356 $array[0] = $langs->trans(
"PrivateProject");
1359 $array[1] = $langs->trans(
"SharedProject");
1362 if (count($array) > 0) {
1363 print $form->selectarray(
'public', $array,
$object->public, 0, 0, 0,
'', 0, 0, 0,
'',
'', 1);
1365 print
'<input type="hidden" id="public" name="public" value="'.$object->public.
'">';
1368 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
1369 print $langs->trans(
"PrivateProject");
1371 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
1372 print $langs->trans(
"SharedProject");
1378 $parameters = array();
1379 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters,
$object, $action);
1380 print $hookmanager->resPrint;
1381 if (empty($reshook)) {
1382 print
$object->showOptionals($extrafields,
'edit');
1387 print
dol_get_fiche_head($head,
'project', $langs->trans(
"Project"), -1, (
$object->public ?
'projectpub' :
'project'), 0,
'',
'', 0,
'', 1);
1391 if (!empty($_SESSION[
'pageforbacktolist']) && !empty($_SESSION[
'pageforbacktolist'][
'project'])) {
1392 $tmpurl = $_SESSION[
'pageforbacktolist'][
'project'];
1393 $tmpurl = preg_replace(
'/__SOCID__/', (
string)
$object->socid, $tmpurl);
1394 $linkback =
'<a href="'.$tmpurl.(preg_match(
'/\?/', $tmpurl) ?
'&' :
'?').
'restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
1396 $linkback =
'<a href="'.DOL_URL_ROOT.
'/projet/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
1399 $morehtmlref =
'<div class="refidno">';
1402 $morehtmlref .=
'<br>';
1404 if (!empty(
$object->thirdparty->id) &&
$object->thirdparty->id > 0) {
1405 $morehtmlref .=
$object->thirdparty->getNomUrl(1,
'project');
1411 $parent->fetch(
$object->fk_project);
1412 $morehtmlref .= $langs->trans(
"Child of").
' '.$parent->getNomUrl(1,
'project').
' '.$parent->title;
1415 $morehtmlref .=
'</div>';
1418 if (!$user->hasRight(
'projet',
'all',
'lire')) {
1419 $objectsListId =
$object->getProjectsAuthorizedForUser($user, 0, 0);
1420 $object->next_prev_filter =
"rowid:IN:".$db->sanitize(count($objectsListId) ? implode(
',', array_keys($objectsListId)) :
'0');
1423 dol_banner_tab(
$object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
1425 print
'<div class="fichecenter">';
1426 print
'<div class="fichehalfleft">';
1427 print
'<div class="underbanner clearboth"></div>';
1429 print
'<table class="border tableforfield centpercent">';
1433 print
'<tr><td class="tdtop">';
1434 print $langs->trans(
"Usage");
1438 print
'<input type="checkbox" disabled name="usage_opportunity"'.(GETPOSTISSET(
'usage_opportunity') ? (
GETPOST(
'usage_opportunity',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_opportunity ?
' checked="checked"' :
'')).
'> ';
1439 $htmltext = $langs->trans(
"ProjectFollowOpportunity");
1440 print $form->textwithpicto($langs->trans(
"ProjectFollowOpportunity"), $htmltext);
1444 print
'<input type="checkbox" disabled name="usage_task"'.(GETPOSTISSET(
'usage_task') ? (
GETPOST(
'usage_task',
'alpha') !=
'' ?
' checked="checked"' :
'') : (
$object->usage_task ?
' checked="checked"' :
'')).
'> ';
1445 $htmltext = $langs->trans(
"ProjectFollowTasks");
1446 print $form->textwithpicto($langs->trans(
"ProjectFollowTasks"), $htmltext);
1450 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"' :
'')).
'> ';
1451 $htmltext = $langs->trans(
"ProjectBillTimeDescription");
1452 print $form->textwithpicto($langs->trans(
"BillTime"), $htmltext);
1456 if (isModEnabled(
'eventorganization')) {
1457 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"' :
'')).
'> ';
1458 $htmltext = $langs->trans(
"EventOrganizationDescriptionLong");
1459 print $form->textwithpicto($langs->trans(
"ManageOrganizeEvent"), $htmltext);
1466 print
'<tr><td>'.$langs->trans(
"OpportunityStatus");
1467 if ($action !=
'edit_opp_status' && $user->hasRight(
'projet',
'creer')) {
1468 print
'<a class="editfielda paddingtop" href="'.$_SERVER[
"PHP_SELF"].
'?action=edit_opp_status&token='.
newToken().
'&id='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</a>';
1471 $html_name_status = ($action ==
'edit_opp_status') ?
'opp_status' :
'none';
1472 $html_name_percent = ($action ==
'edit_opp_status') ?
'opp_percent' :
'none';
1474 $formproject->formOpportunityStatus($_SERVER[
'PHP_SELF'].
'?socid='.
$object->id, (
string)
$object->opp_status, $percent_value, $html_name_status, $html_name_percent);
1478 print
'<tr><td>'.$langs->trans(
"OpportunityAmount").
'</td><td>';
1479 if (strcmp(
$object->opp_amount,
'')) {
1480 print
'<span class="amount">'.price(
$object->opp_amount, 0, $langs, 1, 0, -1,
$conf->currency).
'</span>';
1481 if (strcmp(
$object->opp_percent,
'')) {
1482 print
' <span title="'.dol_escape_htmltag($langs->trans(
'OpportunityWeightedAmount')).
'"><span class="opacitymedium">'.$langs->trans(
"OpportunityWeightedAmountShort").
'</span>: <span class="amount">'.
price(
$object->opp_amount *
$object->opp_percent / 100, 0, $langs, 1, 0, -1,
$conf->currency).
'</span></span>';
1489 print
'<tr><td>'.$langs->trans(
"Budget").
'</td><td>';
1490 if (!is_null(
$object->budget_amount) && strcmp(
$object->budget_amount,
'')) {
1491 print
'<span class="amount">'.price(
$object->budget_amount, 0, $langs, 1, 0, 0,
$conf->currency).
'</span>';
1496 print
'<tr><td>'.$langs->trans(
"Dates").
'</td><td>';
1498 print($start ? $start :
'?');
1500 print
' <span class="opacitymedium">-</span> ';
1501 print($end ? $end :
'?');
1508 print
'<tr><td class="titlefield">'.$langs->trans(
"Visibility").
'</td><td>';
1510 print
img_picto($langs->trans(
'SharedProject'),
'world',
'class="paddingrightonly"');
1511 print $langs->trans(
'SharedProject');
1513 print
img_picto($langs->trans(
'PrivateProject'),
'private',
'class="paddingrightonly"');
1514 print $langs->trans(
'PrivateProject');
1520 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
1525 print
'<div class="fichehalfright">';
1526 print
'<div class="underbanner clearboth"></div>';
1528 print
'<table class="border tableforfield centpercent">';
1531 if (isModEnabled(
'category')) {
1532 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
1533 print $form->showCategories(
$object->id, Categorie::TYPE_PROJECT, 1);
1538 print
'<tr><td class="titlefield'.($object->description ?
' noborderbottom' :
'').
'" colspan="2">'.$langs->trans(
"Description").
'</td></tr>';
1540 print
'<tr><td class="nottitleforfield" colspan="2">';
1541 print
'<div class="longmessagecut">';
1552 print
'<div class="clearboth"></div>';
1557 if ($action ==
'edit' && $userWrite > 0) {
1558 print $form->buttonsSaveCancel();
1564 print
'<script type="text/javascript">
1565 jQuery(document).ready(function() {
1566 jQuery("#usage_task").change(function() {
1567 console.log("We click on usage task "+jQuery("#usage_task").is(":checked"));
1568 if (! jQuery("#usage_task").is(":checked")) {
1569 jQuery("#usage_bill_time").prop("checked", false);
1573 jQuery("#usage_bill_time").change(function() {
1574 console.log("We click on usage to bill time");
1575 if (jQuery("#usage_bill_time").is(":checked")) {
1576 jQuery("#usage_task").prop("checked", true);
1580 jQuery("#projectstart").change(function() {
1581 console.log("We modify the start date");
1582 jQuery("#divreportdate").show();
1590 $defaultcheckedwhenoppclose = 1;
1592 $defaultcheckedwhenoppclose = 0;
1595 print
'<!-- Javascript to manage opportunity status change -->';
1596 print
'<script type="text/javascript">
1597 jQuery(document).ready(function() {
1598 function change_percent()
1600 var element = jQuery("#opp_status option:selected");
1601 var defaultpercent = element.attr("defaultpercent");
1602 var defaultcloseproject = '.((int) $defaultcheckedwhenoppclose).
';
1603 var elemcode = element.attr("elemcode");
1606 console.log(
"We select "+elemcode);
1609 var closeproject = 0;
1610 if (elemcode == \
'LOST\') closeproject = 1;
1611 if (elemcode == \'WON\') closeproject = defaultcloseproject;
1612 if (closeproject) jQuery("#inputcloseproject").prop("checked", true);
1613 else jQuery("#inputcloseproject").prop("checked", false);
1615 /* Make the close project checkbox visible or not */
1616 console.log("closeproject="+closeproject);
1617 if (elemcode == \'WON\' || elemcode == \'LOST\')
1619 jQuery("#divtocloseproject").show();
1623 jQuery("#divtocloseproject").hide();
1626 /* Change percent with default percent (defaultpercent) if new status (defaultpercent) is higher than current (jQuery("#opp_percent").val()) */
1627 if (oldpercent != \'\' && (parseFloat(defaultpercent) < parseFloat(oldpercent)))
1629 console.log("oldpercent="+oldpercent+" defaultpercent="+defaultpercent+" def < old");
1630 if (jQuery("#opp_percent").val() != \'\' && oldpercent != \'\') {
1631 jQuery("#oldopppercent").text(\' - '.
dol_escape_js($langs->transnoentities(
"PreviousValue")).
': \'+price2numjs(oldpercent)+\' %\');
1634 if (parseFloat(oldpercent) != 100 && elemcode != \'LOST\') { jQuery("#opp_percent").val(oldpercent); }
1635 else { jQuery("#opp_percent").val(price2numjs(defaultpercent)); }
1637 console.log("oldpercent="+oldpercent+" defaultpercent="+defaultpercent);
1638 if (jQuery("#opp_percent").val() == \'\' || (parseFloat(jQuery("#opp_percent").val()) < parseFloat(defaultpercent))) {
1639 if (jQuery("#opp_percent").val() != \'\' && oldpercent != \'\') {
1640 jQuery("#oldopppercent").text(\' - '.
dol_escape_js($langs->transnoentities(
"PreviousValue")).
': \'+price2numjs(oldpercent)+\' %\');
1642 jQuery("#opp_percent").val(price2numjs(defaultpercent));
1647 jQuery("#opp_status").change(function() {
1659 print
'<div class="tabsAction">';
1660 $parameters = array();
1661 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters,
$object, $action);
1663 if (empty($reshook)) {
1664 if ($action !=
"edit" && $action !=
'presend') {
1674 if (empty($user->socid)) {
1676 print
dolGetButtonAction(
'', $langs->trans(
'SendMail'),
'default', $_SERVER[
"PHP_SELF"].
'?action=presend&token='.
newToken().
'&id='.
$object->id.
'&mode=init#formmailbeforetitle',
'');
1696 if ($userWrite > 0) {
1697 print
dolGetButtonAction(
'', $langs->trans(
'SetToDraft'),
'default', $_SERVER[
"PHP_SELF"].
'?action=confirm_setdraft&confirm=yes&token='.
newToken().
'&id='.
$object->id,
'');
1699 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'SetToDraft'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1706 if ($userWrite > 0) {
1709 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'Modify'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1715 if ($userWrite > 0) {
1717 print
dolGetButtonAction(
'', $langs->trans(
'Validate'),
'default', $_SERVER[
"PHP_SELF"].
'?action=confirm_validate&confirm=yes&token='.
newToken().
'&id='.
$object->id,
'');
1719 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'Validate'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1725 if ($userWrite > 0) {
1727 print
dolGetButtonAction(
'', $langs->trans(
'Close'),
'default', $_SERVER[
"PHP_SELF"].
'?action=confirm_close&confirm=yes&token='.
newToken().
'&id='.
$object->id,
'');
1729 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'Close'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1735 if ($userWrite > 0) {
1738 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'ReOpen'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1746 $is_customer_or_prospect = (!empty(
$object->thirdparty->prospect) || !empty(
$object->thirdparty->client));
1747 $is_supplier_only= (!empty(
$object->thirdparty->fournisseur) && !$is_customer_or_prospect);
1749 $arrayforbutaction = array(
1750 10 => array(
'lang'=>
'propal',
'enabled' => (isModEnabled(
"propal") && $is_customer_or_prospect),
'perm' => $user->hasRight(
'propal',
'creer') ?
true : false,
'label' =>
'AddProp',
'url'=>
'/comm/propal/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1751 20 => array(
'lang'=>
'orders',
'enabled' => (isModEnabled(
"order") && $is_customer_or_prospect),
'perm' => $user->hasRight(
'commande',
'creer') ? true : false,
'label' =>
'CreateOrder',
'url'=>
'/commande/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1752 30 => array(
'lang'=>
'bills',
'enabled' => (isModEnabled(
"invoice") && $is_customer_or_prospect),
'perm' => $user->hasRight(
'facture',
'creer') ? true : false,
'label' =>
'CreateBill',
'url'=>
'/compta/facture/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1753 40 => array(
'lang'=>
'supplier_proposal',
'enabled' => isModEnabled(
"supplier_proposal"),
'perm' => $user->hasRight(
'supplier_proposal',
'creer') ? true : false,
'label' =>
'AddSupplierProposal',
'url'=>
'/supplier_proposal/card.php?action=create&projectid='.
$object->id.($is_supplier_only ?
'&socid='.
$object->socid :
'')),
1754 50 => array(
'lang'=>
'suppliers',
'enabled' => isModEnabled(
"supplier_order"),
'perm' => $user->hasRight(
'fournisseur',
'commande',
'creer') ? true : false,
'label' =>
'AddSupplierOrder',
'url'=>
'/fourn/commande/card.php?action=create&projectid='.
$object->id.($is_supplier_only ?
'&socid='.
$object->socid :
'')),
1755 60 => array(
'lang'=>
'suppliers',
'enabled' => isModEnabled(
"supplier_invoice"),
'perm' => $user->hasRight(
'fournisseur',
'facture',
'creer') ? true : false,
'label' =>
'AddSupplierInvoice',
'url'=>
'/fourn/facture/card.php?action=create&projectid='.
$object->id.($is_supplier_only ?
'&socid='.
$object->socid :
'')),
1756 70 => array(
'lang'=>
'interventions',
'enabled' => isModEnabled(
"intervention"),
'perm' => $user->hasRight(
'fichinter',
'creer') ? true : false,
'label' =>
'AddIntervention',
'url'=>
'/fichinter/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1757 80 => array(
'lang'=>
'contracts',
'enabled' => isModEnabled(
"contract"),
'perm' => $user->hasRight(
'contrat',
'creer') ? true : false,
'label' =>
'AddContract',
'url'=>
'/contrat/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1758 90 => array(
'lang'=>
'trips',
'enabled' => isModEnabled(
"expensereport"),
'perm' => $user->hasRight(
'expensereport',
'creer') ? true : false,
'label' =>
'AddTrip',
'url'=>
'/expensereport/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1759 100 => array(
'lang'=>
'donations',
'enabled' => isModEnabled(
"don"),
'perm' => $user->hasRight(
'don',
'creer') ? true : false,
'label' =>
'AddDonation',
'url'=>
'/don/card.php?action=create&projectid='.
$object->id.
'&socid='.
$object->socid),
1762 $params = array(
'backtopage' => $_SERVER[
"PHP_SELF"].
'?id='.
$object->id);
1765 print
dolGetButtonAction(
'', $langs->trans(
"Create"),
'default', $arrayforbutaction,
'', 1, $params);
1769 if ($user->hasRight(
'projet',
'creer')) {
1770 if ($userWrite > 0) {
1773 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'ToClone'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1782 print
dolGetButtonAction($langs->trans(
'NotOwnerOfProject'), $langs->trans(
'Delete'),
'default', $_SERVER[
'PHP_SELF'].
'#',
'',
false);
1790 if (
GETPOST(
'modelselected')) {
1791 $action =
'presend';
1794 if ($action !=
'presend') {
1795 print
'<div class="fichecenter"><div class="fichehalfleft">';
1796 print
'<a name="builddoc"></a>';
1802 $children =
$object->getChildren();
1804 print
'<table class="centpercent notopnoleftnoright table-fiche-title">';
1805 print
'<tr class="titre"><td class="nobordernopadding valignmiddle col-title">';
1806 print
'<div class="titre inline-block">'.$langs->trans(
'Sub-projects').
'</div>';
1807 print
'</td></tr></table>';
1809 print
'<div class="div-table-responsive-no-min">';
1810 print
'<table class="centpercent noborder'.($morecss ?
' '.$morecss :
'').
'">';
1811 print
'<tr class="liste_titre">';
1812 print
getTitleFieldOfList(
'Ref', 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'',
'',
'',
'', 1);
1813 print
getTitleFieldOfList(
'Title', 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'',
'',
'',
'', 1);
1814 print
getTitleFieldOfList(
'Status', 0, $_SERVER[
"PHP_SELF"],
'',
'',
'',
'',
'',
'',
'', 1);
1818 $subproject =
new Project($db);
1819 foreach ($children as $child) {
1820 $subproject->fetch($child->rowid);
1821 print
'<tr class="oddeven">';
1822 print
'<td class="nowraponall">'.$subproject->getNomUrl(1,
'project').
'</td>';
1823 print
'<td class="nowraponall tdoverflowmax125">'.$child->title.
'</td>';
1824 print
'<td class="nowraponall">'.$subproject->getLibStatut(5).
'</td>';
1838 $urlsource = $_SERVER[
"PHP_SELF"].
"?id=".
$object->id;
1839 $genallowed = ($user->hasRight(
'projet',
'lire') && $userAccess > 0);
1840 $delallowed = ($user->hasRight(
'projet',
'creer') && $userWrite > 0);
1842 print $formfile->showdocuments(
'project', $filename, $filedir, $urlsource, (
int) $genallowed, (int) $delallowed,
$object->model_pdf, 1, 0, 0, 0, 0,
'',
'',
'',
'',
'',
$object);
1844 print
'</div><div class="fichehalfright">';
1848 $morehtmlcenter =
'<div class="nowraponall">';
1849 $morehtmlcenter .=
dolGetButtonTitle($langs->trans(
'FullConversation'),
'',
'fa fa-comments imgforviewmode', DOL_URL_ROOT.
'/projet/messaging.php?id='.
$object->id);
1850 $morehtmlcenter .=
dolGetButtonTitle($langs->trans(
'FullList'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/projet/agenda.php?id='.
$object->id);
1851 $morehtmlcenter .=
'</div>';
1854 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
1856 $somethingshown = $formactions->showactions(
$object,
'project', 0, 1,
'', $MAXEVENT,
'', $morehtmlcenter);
1858 print
'</div></div>';
1862 $modelmail =
'project';
1863 $defaulttopic =
'SendProjectRef';
1864 $defaulttopiclang =
'projects';
1865 $diroutput =
$conf->project->multidir_output[
$object->entity];
1866 $autocopy =
'MAIN_MAIL_AUTOCOPY_PROJECT_TO';
1867 $trackid =
'proj'.$object->id;
1869 include DOL_DOCUMENT_ROOT.
'/core/tpl/card_presend.tpl.php';
1872 $parameters = array();
1873 $reshook = $hookmanager->executeHooks(
'mainCardTabAddMore', $parameters,
$object, $action);
$id
Support class for third parties, contacts, members, users or resources.
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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_VALIDATED
Open/Validated status.
const STATUS_CLOSED
Closed status.
const STATUS_DRAFT
Draft status.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage translations.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
recordNotFound($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Displays an error page when a record is not found.
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...
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='', $useCache=true)
Return an id or code from a code or id.
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.
vatrate($rate, $addpercent=false, $info_bits=0, $usestarfornpr=0, $html=0)
Return a string with VAT rate label formatted for view output Used into pdf and HTML pages.
img_help($usehelpcursor=1, $usealttitle=1)
Show help logo with cursor "?".
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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, $morecssdiv='')
Show tabs of a record.
dolPrintHTML($s, $allowiframe=0)
Return a string (that can be on several lines) ready to be output on a HTML page.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dolButtonToOpenUrlInDialogPopup($name, $label, $buttonstring, $url, $disabled='', $morecss='classlink button bordertransp', $jsonopen='', $jsonclose='', $accesskey='')
Return HTML code to output a button to open a dialog popup box.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
setEventMessage($mesgs, $style='mesgs', $noduplicate=0, $attop=0)
Set event message in dol_events session object.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_escape_js($stringtoescape, $mode=0, $noescapebackslashn=0)
Returns text escaped for inclusion into javascript code.
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).
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
GETPOSTFLOAT($paramname, $rounding='')
Return the value of a $_GET or $_POST supervariable, converted into float.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_clone($object, $native=2)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
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...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.