29require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
40 public $element =
'holiday';
46 public $TRIGGER_PREFIX =
'HOLIDAY';
51 public $table_element =
'holiday';
56 public $fk_element =
'fk_holiday';
61 public $picto =
'holiday';
71 public $date_create =
'';
81 public $date_debut =
'';
86 public $date_fin =
'';
91 public $date_debut_gmt =
'';
96 public $date_fin_gmt =
'';
101 public $halfday =
'';
112 public $fk_validator;
117 public $date_valid = 0;
122 public $fk_user_valid;
127 public $date_approval;
132 public $fk_user_approve;
137 public $date_refuse = 0;
142 public $fk_user_refuse;
147 public $date_cancel = 0;
152 public $fk_user_cancel;
157 public $fk_user_create;
162 public $detail_refuse =
'';
169 public $holiday = array();
170 public $events = array();
175 public $logs = array();
209 $this->ismultientitymanaged = 0;
222 global $langs, $conf;
223 $langs->load(
"order");
226 $conf->global->HOLIDAY_ADDON =
'mod_holiday_madonna';
236 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
237 foreach ($dirmodels as $reldir) {
241 $mybool = ((bool) @include_once $dir.$file) || $mybool;
249 $obj =
new $classname();
250 '@phan-var-force ModelNumRefHolidays $obj';
251 $numref = $obj->getNextValue($objsoc, $this);
256 $this->error = $obj->error;
261 print $langs->trans(
"Error").
" ".$langs->trans(
"Error_HOLIDAY_ADDON_NotDefined");
285 $this->db->rollback();
297 public function create($user, $notrigger = 0)
305 if (empty($this->fk_user) || !is_numeric($this->fk_user) || $this->fk_user < 0) {
306 $this->error =
"ErrorBadParameterFkUser";
309 if (empty($this->fk_validator) || !is_numeric($this->fk_validator) || $this->fk_validator < 0) {
310 $this->error =
"ErrorBadParameterFkValidator";
313 if (empty($this->fk_type) || !is_numeric($this->fk_type) || $this->fk_type < 0) {
314 $this->error =
"ErrorBadParameterFkType";
319 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday(";
322 $sql .=
"date_create,";
323 $sql .=
"description,";
324 $sql .=
"date_debut,";
328 $sql .=
"fk_validator,";
330 $sql .=
"fk_user_create,";
332 $sql .=
") VALUES (";
334 $sql .=
" ".((int) $this->fk_user).
",";
335 $sql .=
" '".$this->db->idate($now).
"',";
336 $sql .=
" '".$this->db->escape($this->
description).
"',";
337 $sql .=
" '".$this->db->idate($this->date_debut).
"',";
338 $sql .=
" '".$this->db->idate($this->date_fin).
"',";
339 $sql .=
" ".((int) $this->halfday).
",";
341 $sql .=
" ".((int) $this->fk_validator).
",";
342 $sql .=
" ".((int) $this->fk_type).
",";
343 $sql .=
" ".((int) $user->id).
",";
344 $sql .=
" ".((int) $conf->entity);
349 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
350 $resql = $this->db->query($sql);
353 $this->errors[] =
"Error ".$this->db->lasterror();
357 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"holiday");
361 $initialref =
'(PROV'.$this->id.
')';
362 if (!empty($this->
ref)) {
363 $initialref = $this->ref;
366 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"holiday SET ref='".$this->db->escape($initialref).
"' WHERE rowid=".((int) $this->
id);
367 if ($this->db->query($sql)) {
368 $this->
ref = $initialref;
377 if (!$error && !$notrigger) {
379 $result = $this->call_trigger(
'HOLIDAY_CREATE', $user);
391 foreach ($this->errors as $errmsg) {
392 dol_syslog(get_class($this).
"::create ".$errmsg, LOG_ERR);
393 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
395 $this->db->rollback();
411 public function fetch($id, $ref =
'')
414 $sql .=
" cp.rowid,";
416 $sql .=
" cp.fk_user,";
417 $sql .=
" cp.date_create,";
418 $sql .=
" cp.description,";
419 $sql .=
" cp.date_debut,";
420 $sql .=
" cp.date_fin,";
421 $sql .=
" cp.halfday,";
422 $sql .=
" cp.statut as status,";
423 $sql .=
" cp.fk_validator,";
424 $sql .=
" cp.date_valid,";
425 $sql .=
" cp.fk_user_valid,";
426 $sql .=
" cp.date_approval,";
427 $sql .=
" cp.fk_user_approve,";
428 $sql .=
" cp.date_refuse,";
429 $sql .=
" cp.fk_user_refuse,";
430 $sql .=
" cp.date_cancel,";
431 $sql .=
" cp.fk_user_cancel,";
432 $sql .=
" cp.detail_refuse,";
433 $sql .=
" cp.note_private,";
434 $sql .=
" cp.note_public,";
435 $sql .=
" cp.fk_user_create,";
436 $sql .=
" cp.fk_type,";
437 $sql .=
" cp.entity";
438 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as cp";
440 $sql .=
" WHERE cp.rowid = ".((int) $id);
442 $sql .=
" WHERE cp.ref = '".$this->db->escape($ref).
"'";
445 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
446 $resql = $this->db->query($sql);
448 if ($this->db->num_rows($resql)) {
449 $obj = $this->db->fetch_object($resql);
451 $this->
id = $obj->rowid;
452 $this->
ref = ($obj->ref ? $obj->ref : $obj->rowid);
453 $this->fk_user = $obj->fk_user;
454 $this->date_create = $this->db->jdate($obj->date_create);
456 $this->date_debut = $this->db->jdate($obj->date_debut);
457 $this->date_fin = $this->db->jdate($obj->date_fin);
458 $this->date_debut_gmt = $this->db->jdate($obj->date_debut, 1);
459 $this->date_fin_gmt = $this->db->jdate($obj->date_fin, 1);
460 $this->halfday = $obj->halfday;
461 $this->
status = $obj->status;
462 $this->statut = $obj->status;
463 $this->fk_validator = $obj->fk_validator;
464 $this->date_valid = $this->db->jdate($obj->date_valid);
465 $this->fk_user_valid = $obj->fk_user_valid;
466 $this->user_validation_id = $obj->fk_user_valid;
467 $this->date_approval = $this->db->jdate($obj->date_approval);
468 $this->fk_user_approve = $obj->fk_user_approve;
469 $this->date_refuse = $this->db->jdate($obj->date_refuse);
470 $this->fk_user_refuse = $obj->fk_user_refuse;
471 $this->date_cancel = $this->db->jdate($obj->date_cancel);
472 $this->fk_user_cancel = $obj->fk_user_cancel;
473 $this->detail_refuse = $obj->detail_refuse;
474 $this->note_private = $obj->note_private;
475 $this->note_public = $obj->note_public;
476 $this->fk_user_create = $obj->fk_user_create;
477 $this->fk_type = $obj->fk_type;
478 $this->entity = $obj->entity;
486 $this->db->free($resql);
490 $this->error =
"Error ".$this->db->lasterror();
507 $sql .=
" cp.rowid,";
510 $sql .=
" cp.fk_user,";
511 $sql .=
" cp.fk_type,";
512 $sql .=
" cp.date_create,";
513 $sql .=
" cp.description,";
514 $sql .=
" cp.date_debut,";
515 $sql .=
" cp.date_fin,";
516 $sql .=
" cp.halfday,";
517 $sql .=
" cp.statut as status,";
518 $sql .=
" cp.fk_validator,";
519 $sql .=
" cp.date_valid,";
520 $sql .=
" cp.fk_user_valid,";
521 $sql .=
" cp.date_approval,";
522 $sql .=
" cp.fk_user_approve,";
523 $sql .=
" cp.date_refuse,";
524 $sql .=
" cp.fk_user_refuse,";
525 $sql .=
" cp.date_cancel,";
526 $sql .=
" cp.fk_user_cancel,";
527 $sql .=
" cp.detail_refuse,";
529 $sql .=
" uu.lastname as user_lastname,";
530 $sql .=
" uu.firstname as user_firstname,";
531 $sql .=
" uu.login as user_login,";
532 $sql .=
" uu.statut as user_status,";
533 $sql .=
" uu.photo as user_photo,";
535 $sql .=
" ua.lastname as validator_lastname,";
536 $sql .=
" ua.firstname as validator_firstname,";
537 $sql .=
" ua.login as validator_login,";
538 $sql .=
" ua.statut as validator_status,";
539 $sql .=
" ua.photo as validator_photo";
541 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as cp, ".MAIN_DB_PREFIX.
"user as uu, ".MAIN_DB_PREFIX.
"user as ua";
542 $sql .=
" WHERE cp.entity IN (".getEntity(
'holiday').
")";
543 $sql .=
" AND cp.fk_user = uu.rowid AND cp.fk_validator = ua.rowid";
544 $sql .=
" AND cp.fk_user IN (".$this->db->sanitize($user_id).
")";
547 if (!empty($filter)) {
552 if (!empty($order)) {
556 dol_syslog(get_class($this).
"::fetchByUser", LOG_DEBUG);
557 $resql = $this->db->query($sql);
562 $tab_result = $this->holiday;
563 $num = $this->db->num_rows($resql);
572 $obj = $this->db->fetch_object($resql);
574 $tab_result[$i][
'rowid'] = $obj->rowid;
575 $tab_result[$i][
'id'] = $obj->rowid;
576 $tab_result[$i][
'ref'] = ($obj->ref ? $obj->ref : $obj->rowid);
578 $tab_result[$i][
'fk_user'] = $obj->fk_user;
579 $tab_result[$i][
'fk_type'] = $obj->fk_type;
580 $tab_result[$i][
'date_create'] = $this->db->jdate($obj->date_create);
581 $tab_result[$i][
'description'] = $obj->description;
582 $tab_result[$i][
'date_debut'] = $this->db->jdate($obj->date_debut);
583 $tab_result[$i][
'date_fin'] = $this->db->jdate($obj->date_fin);
584 $tab_result[$i][
'date_debut_gmt'] = $this->db->jdate($obj->date_debut, 1);
585 $tab_result[$i][
'date_fin_gmt'] = $this->db->jdate($obj->date_fin, 1);
586 $tab_result[$i][
'halfday'] = $obj->halfday;
587 $tab_result[$i][
'statut'] = $obj->status;
588 $tab_result[$i][
'status'] = $obj->status;
589 $tab_result[$i][
'fk_validator'] = $obj->fk_validator;
590 $tab_result[$i][
'date_valid'] = $this->db->jdate($obj->date_valid);
591 $tab_result[$i][
'fk_user_valid'] = $obj->fk_user_valid;
592 $tab_result[$i][
'date_approval'] = $this->db->jdate($obj->date_approval);
593 $tab_result[$i][
'fk_user_approve'] = $obj->fk_user_approve;
594 $tab_result[$i][
'date_refuse'] = $this->db->jdate($obj->date_refuse);
595 $tab_result[$i][
'fk_user_refuse'] = $obj->fk_user_refuse;
596 $tab_result[$i][
'date_cancel'] = $this->db->jdate($obj->date_cancel);
597 $tab_result[$i][
'fk_user_cancel'] = $obj->fk_user_cancel;
598 $tab_result[$i][
'detail_refuse'] = $obj->detail_refuse;
600 $tab_result[$i][
'user_firstname'] = $obj->user_firstname;
601 $tab_result[$i][
'user_lastname'] = $obj->user_lastname;
602 $tab_result[$i][
'user_login'] = $obj->user_login;
603 $tab_result[$i][
'user_statut'] = $obj->user_status;
604 $tab_result[$i][
'user_status'] = $obj->user_status;
605 $tab_result[$i][
'user_photo'] = $obj->user_photo;
607 $tab_result[$i][
'validator_firstname'] = $obj->validator_firstname;
608 $tab_result[$i][
'validator_lastname'] = $obj->validator_lastname;
609 $tab_result[$i][
'validator_login'] = $obj->validator_login;
610 $tab_result[$i][
'validator_statut'] = $obj->validator_status;
611 $tab_result[$i][
'validator_status'] = $obj->validator_status;
612 $tab_result[$i][
'validator_photo'] = $obj->validator_photo;
618 $this->holiday = $tab_result;
622 $this->error =
"Error ".$this->db->lasterror();
637 $sql .=
" cp.rowid,";
639 $sql .=
" cp.fk_user,";
640 $sql .=
" cp.fk_type,";
641 $sql .=
" cp.date_create,";
642 $sql .=
" cp.tms as date_modification,";
643 $sql .=
" cp.description,";
644 $sql .=
" cp.date_debut,";
645 $sql .=
" cp.date_fin,";
646 $sql .=
" cp.halfday,";
647 $sql .=
" cp.statut as status,";
648 $sql .=
" cp.fk_validator,";
649 $sql .=
" cp.date_valid,";
650 $sql .=
" cp.fk_user_valid,";
651 $sql .=
" cp.date_approval,";
652 $sql .=
" cp.fk_user_approve,";
653 $sql .=
" cp.date_refuse,";
654 $sql .=
" cp.fk_user_refuse,";
655 $sql .=
" cp.date_cancel,";
656 $sql .=
" cp.fk_user_cancel,";
657 $sql .=
" cp.detail_refuse,";
659 $sql .=
" uu.lastname as user_lastname,";
660 $sql .=
" uu.firstname as user_firstname,";
661 $sql .=
" uu.login as user_login,";
662 $sql .=
" uu.statut as user_status,";
663 $sql .=
" uu.photo as user_photo,";
665 $sql .=
" ua.lastname as validator_lastname,";
666 $sql .=
" ua.firstname as validator_firstname,";
667 $sql .=
" ua.login as validator_login,";
668 $sql .=
" ua.statut as validator_status,";
669 $sql .=
" ua.photo as validator_photo";
671 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as cp, ".MAIN_DB_PREFIX.
"user as uu, ".MAIN_DB_PREFIX.
"user as ua";
672 $sql .=
" WHERE cp.entity IN (".getEntity(
'holiday').
")";
673 $sql .=
" AND cp.fk_user = uu.rowid AND cp.fk_validator = ua.rowid ";
676 if (!empty($filter)) {
681 if (!empty($order)) {
685 dol_syslog(get_class($this).
"::fetchAll", LOG_DEBUG);
686 $resql = $this->db->query($sql);
691 $tab_result = $this->holiday;
692 $num = $this->db->num_rows($resql);
701 $obj = $this->db->fetch_object($resql);
703 $tab_result[$i][
'rowid'] = $obj->rowid;
704 $tab_result[$i][
'id'] = $obj->rowid;
705 $tab_result[$i][
'ref'] = ($obj->ref ? $obj->ref : $obj->rowid);
707 $tab_result[$i][
'fk_user'] = $obj->fk_user;
708 $tab_result[$i][
'fk_type'] = $obj->fk_type;
709 $tab_result[$i][
'date_create'] = $this->db->jdate($obj->date_create);
710 $tab_result[$i][
'date_modification'] = $this->db->jdate($obj->date_modification);
711 $tab_result[$i][
'description'] = $obj->description;
712 $tab_result[$i][
'date_debut'] = $this->db->jdate($obj->date_debut);
713 $tab_result[$i][
'date_fin'] = $this->db->jdate($obj->date_fin);
714 $tab_result[$i][
'date_debut_gmt'] = $this->db->jdate($obj->date_debut, 1);
715 $tab_result[$i][
'date_fin_gmt'] = $this->db->jdate($obj->date_fin, 1);
716 $tab_result[$i][
'halfday'] = $obj->halfday;
717 $tab_result[$i][
'statut'] = $obj->status;
718 $tab_result[$i][
'status'] = $obj->status;
719 $tab_result[$i][
'fk_validator'] = $obj->fk_validator;
720 $tab_result[$i][
'date_valid'] = $this->db->jdate($obj->date_valid);
721 $tab_result[$i][
'fk_user_valid'] = $obj->fk_user_valid;
722 $tab_result[$i][
'date_approval'] = $this->db->jdate($obj->date_approval);
723 $tab_result[$i][
'fk_user_approve'] = $obj->fk_user_approve;
724 $tab_result[$i][
'date_refuse'] = $obj->date_refuse;
725 $tab_result[$i][
'fk_user_refuse'] = $obj->fk_user_refuse;
726 $tab_result[$i][
'date_cancel'] = $obj->date_cancel;
727 $tab_result[$i][
'fk_user_cancel'] = $obj->fk_user_cancel;
728 $tab_result[$i][
'detail_refuse'] = $obj->detail_refuse;
730 $tab_result[$i][
'user_firstname'] = $obj->user_firstname;
731 $tab_result[$i][
'user_lastname'] = $obj->user_lastname;
732 $tab_result[$i][
'user_login'] = $obj->user_login;
733 $tab_result[$i][
'user_statut'] = $obj->user_status;
734 $tab_result[$i][
'user_status'] = $obj->user_status;
735 $tab_result[$i][
'user_photo'] = $obj->user_photo;
737 $tab_result[$i][
'validator_firstname'] = $obj->validator_firstname;
738 $tab_result[$i][
'validator_lastname'] = $obj->validator_lastname;
739 $tab_result[$i][
'validator_login'] = $obj->validator_login;
740 $tab_result[$i][
'validator_statut'] = $obj->validator_status;
741 $tab_result[$i][
'validator_status'] = $obj->validator_status;
742 $tab_result[$i][
'validator_photo'] = $obj->validator_photo;
747 $this->holiday = $tab_result;
751 $this->error =
"Error ".$this->db->lasterror();
764 public function validate($user =
null, $notrigger = 0)
766 global $conf, $langs;
767 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
771 $checkBalance =
getDictionaryValue(
'c_holiday_types',
'block_if_negative', $this->fk_type,
true);
773 if ($checkBalance > 0) {
774 $balance = $this->
getCPforUser($this->fk_user, $this->fk_type);
775 $daysAsked =
num_open_day($this->date_debut, $this->date_fin, 0, 1);
777 if (($balance - $daysAsked) < 0 &&
getDolGlobalString(
'HOLIDAY_DISALLOW_NEGATIVE_BALANCE')) {
778 $this->error =
'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
784 if (preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref) || $this->
ref == $this->
id) {
787 $num = (string) $this->
ref;
792 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday SET";
793 $sql .=
" fk_user_valid = ".((int) $user->id).
",";
794 $sql .=
" date_valid = '".$this->db->idate(
dol_now()).
"',";
795 if (!empty($this->
status) && is_numeric($this->
status)) {
796 $sql .=
" statut = ".((int) $this->
status).
",";
798 $this->error =
'Property status must be a numeric value';
801 $sql .=
" ref = '".$this->db->escape($num).
"'";
802 $sql .=
" WHERE rowid = ".((int) $this->
id);
806 dol_syslog(get_class($this).
"::validate", LOG_DEBUG);
807 $resql = $this->db->query($sql);
810 $this->errors[] =
"Error ".$this->db->lasterror();
816 $result = $this->call_trigger(
'HOLIDAY_VALIDATE', $user);
825 $this->oldref = $this->ref;
828 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
830 $sql =
'UPDATE ' . MAIN_DB_PREFIX .
"ecm_files set filename = CONCAT('" . $this->db->escape($this->newref) .
"', SUBSTR(filename, " . (strlen($this->
ref) + 1) .
")), filepath = 'holiday/" . $this->db->escape($this->newref) .
"'";
831 $sql .=
" WHERE filename LIKE '" . $this->db->escape($this->
ref) .
"%' AND filepath = 'holiday/" . $this->db->escape($this->
ref) .
"' and entity = " . ((int) $conf->entity);
832 $resql = $this->db->query($sql);
835 $this->error = $this->db->lasterror();
837 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'holiday/".$this->db->escape($this->newref).
"'";
838 $sql .=
" WHERE filepath = 'holiday/".$this->db->escape($this->
ref).
"' and entity = ".$conf->entity;
839 $resql = $this->db->query($sql);
842 $this->error = $this->db->lasterror();
848 $dirsource = $conf->holiday->multidir_output[$this->entity] .
'/' . $oldref;
849 $dirdest = $conf->holiday->multidir_output[$this->entity] .
'/' . $newref;
850 if (!$error && file_exists($dirsource)) {
851 dol_syslog(get_class($this) .
"::validate rename dir " . $dirsource .
" into " . $dirdest);
852 if (@rename($dirsource, $dirdest)) {
855 $listoffiles =
dol_dir_list($dirdest,
'files', 1,
'^' . preg_quote($oldref,
'/'));
856 foreach ($listoffiles as $fileentry) {
857 $dirsource = $fileentry[
'name'];
858 $dirdest = preg_replace(
'/^' . preg_quote($oldref,
'/') .
'/', $newref, $dirsource);
859 $dirsource = $fileentry[
'path'] .
'/' . $dirsource;
860 $dirdest = $fileentry[
'path'] .
'/' . $dirdest;
861 @rename($dirsource, $dirdest);
871 foreach ($this->errors as $errmsg) {
872 dol_syslog(get_class($this).
"::validate ".$errmsg, LOG_ERR);
873 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
875 $this->db->rollback();
891 public function approve($user =
null, $notrigger = 0)
895 $checkBalance =
getDictionaryValue(
'c_holiday_types',
'block_if_negative', $this->fk_type,
true);
897 if ($checkBalance > 0) {
898 $balance = $this->
getCPforUser($this->fk_user, $this->fk_type);
899 $daysAsked =
num_open_day($this->date_debut, $this->date_fin, 0, 1);
901 if (($balance - $daysAsked) < 0 &&
getDolGlobalString(
'HOLIDAY_DISALLOW_NEGATIVE_BALANCE')) {
902 $this->error =
'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
908 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday SET";
909 $sql .=
" description= '".$this->db->escape($this->
description).
"',";
910 if (!empty($this->date_debut)) {
911 $sql .=
" date_debut = '".$this->db->idate($this->date_debut).
"',";
915 if (!empty($this->date_fin)) {
916 $sql .=
" date_fin = '".$this->db->idate($this->date_fin).
"',";
920 $sql .=
" halfday = ".((int) $this->halfday).
",";
921 if (!empty($this->
status) && is_numeric($this->
status)) {
922 $sql .=
" statut = ".((int) $this->
status).
",";
926 if (!empty($this->fk_validator)) {
927 $sql .=
" fk_validator = ".((int) $this->fk_validator).
",";
931 if (!empty($this->date_valid)) {
932 $sql .=
" date_valid = '".$this->db->idate($this->date_valid).
"',";
934 $sql .=
" date_valid = NULL,";
936 if (!empty($this->fk_user_valid)) {
937 $sql .=
" fk_user_valid = ".((int) $this->fk_user_valid).
",";
939 $sql .=
" fk_user_valid = NULL,";
941 if (!empty($this->date_approval)) {
942 $sql .=
" date_approval = '".$this->db->idate($this->date_approval).
"',";
944 $sql .=
" date_approval = NULL,";
946 if (!empty($this->fk_user_approve)) {
947 $sql .=
" fk_user_approve = ".((int) $this->fk_user_approve).
",";
949 $sql .=
" fk_user_approve = NULL,";
951 if (!empty($this->date_refuse)) {
952 $sql .=
" date_refuse = '".$this->db->idate($this->date_refuse).
"',";
954 $sql .=
" date_refuse = NULL,";
956 if (!empty($this->fk_user_refuse)) {
957 $sql .=
" fk_user_refuse = ".((int) $this->fk_user_refuse).
",";
959 $sql .=
" fk_user_refuse = NULL,";
961 if (!empty($this->date_cancel)) {
962 $sql .=
" date_cancel = '".$this->db->idate($this->date_cancel).
"',";
964 $sql .=
" date_cancel = NULL,";
966 if (!empty($this->fk_user_cancel)) {
967 $sql .=
" fk_user_cancel = ".((int) $this->fk_user_cancel).
",";
969 $sql .=
" fk_user_cancel = NULL,";
971 if (!empty($this->detail_refuse)) {
972 $sql .=
" detail_refuse = '".$this->db->escape($this->detail_refuse).
"'";
974 $sql .=
" detail_refuse = NULL";
976 $sql .=
" WHERE rowid = ".((int) $this->
id);
980 dol_syslog(get_class($this).
"::approve", LOG_DEBUG);
981 $resql = $this->db->query($sql);
984 $this->errors[] =
"Error ".$this->db->lasterror();
990 $result = $this->call_trigger(
'HOLIDAY_APPROVE', $user);
1000 foreach ($this->errors as $errmsg) {
1001 dol_syslog(get_class($this).
"::approve ".$errmsg, LOG_ERR);
1002 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1004 $this->db->rollback();
1007 $this->db->commit();
1019 public function update($user =
null, $notrigger = 0)
1021 global $conf, $langs;
1024 $checkBalance =
getDictionaryValue(
'c_holiday_types',
'block_if_negative', $this->fk_type,
true);
1026 if ($checkBalance > 0 && $this->statut != self::STATUS_DRAFT && $this->statut != self::STATUS_CANCELED) {
1027 $balance = $this->
getCPforUser($this->fk_user, $this->fk_type);
1028 $daysAsked =
num_open_day($this->date_debut, $this->date_fin, 0, 1);
1030 if (($balance - $daysAsked) < 0 &&
getDolGlobalString(
'HOLIDAY_DISALLOW_NEGATIVE_BALANCE')) {
1031 $this->error =
'LeaveRequestCreationBlockedBecauseBalanceIsNegative';
1037 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday SET";
1039 $sql .=
" description= '".$this->db->escape($this->
description).
"',";
1041 if (!empty($this->date_debut)) {
1042 $sql .=
" date_debut = '".$this->db->idate($this->date_debut).
"',";
1046 if (!empty($this->date_fin)) {
1047 $sql .=
" date_fin = '".$this->db->idate($this->date_fin).
"',";
1051 $sql .=
" halfday = ".((int) $this->halfday).
",";
1052 if (!empty($this->
status) && is_numeric($this->
status)) {
1053 $sql .=
" statut = ".((int) $this->
status).
",";
1057 if (!empty($this->fk_validator)) {
1058 $sql .=
" fk_validator = ".((int) $this->fk_validator).
",";
1062 if (!empty($this->date_valid)) {
1063 $sql .=
" date_valid = '".$this->db->idate($this->date_valid).
"',";
1065 $sql .=
" date_valid = NULL,";
1067 if (!empty($this->fk_user_valid)) {
1068 $sql .=
" fk_user_valid = ".((int) $this->fk_user_valid).
",";
1070 $sql .=
" fk_user_valid = NULL,";
1072 if (!empty($this->date_approval)) {
1073 $sql .=
" date_approval = '".$this->db->idate($this->date_approval).
"',";
1075 $sql .=
" date_approval = NULL,";
1077 if (!empty($this->fk_user_approve)) {
1078 $sql .=
" fk_user_approve = ".((int) $this->fk_user_approve).
",";
1080 $sql .=
" fk_user_approve = NULL,";
1082 if (!empty($this->date_refuse)) {
1083 $sql .=
" date_refuse = '".$this->db->idate($this->date_refuse).
"',";
1085 $sql .=
" date_refuse = NULL,";
1087 if (!empty($this->fk_user_refuse)) {
1088 $sql .=
" fk_user_refuse = ".((int) $this->fk_user_refuse).
",";
1090 $sql .=
" fk_user_refuse = NULL,";
1092 if (!empty($this->date_cancel)) {
1093 $sql .=
" date_cancel = '".$this->db->idate($this->date_cancel).
"',";
1095 $sql .=
" date_cancel = NULL,";
1097 if (!empty($this->fk_user_cancel)) {
1098 $sql .=
" fk_user_cancel = ".((int) $this->fk_user_cancel).
",";
1100 $sql .=
" fk_user_cancel = NULL,";
1102 if (!empty($this->detail_refuse)) {
1103 $sql .=
" detail_refuse = '".$this->db->escape($this->detail_refuse).
"'";
1105 $sql .=
" detail_refuse = NULL";
1108 $sql .=
" WHERE rowid = ".((int) $this->
id);
1112 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
1113 $resql = $this->db->query($sql);
1116 $this->errors[] =
"Error ".$this->db->lasterror();
1127 if (!$notrigger && $user !==
null) {
1129 $result = $this->call_trigger(
'HOLIDAY_MODIFY', $user);
1139 foreach ($this->errors as $errmsg) {
1140 dol_syslog(get_class($this).
"::update ".$errmsg, LOG_ERR);
1141 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1143 $this->db->rollback();
1146 $this->db->commit();
1159 public function delete($user, $notrigger = 0)
1161 global $conf, $langs;
1164 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"holiday";
1165 $sql .=
" WHERE rowid=".((int) $this->
id);
1169 dol_syslog(get_class($this).
"::delete", LOG_DEBUG);
1170 $resql = $this->db->query($sql);
1173 $this->errors[] =
"Error ".$this->db->lasterror();
1179 $result = $this->call_trigger(
'HOLIDAY_DELETE', $user);
1189 foreach ($this->errors as $errmsg) {
1190 dol_syslog(get_class($this).
"::delete ".$errmsg, LOG_ERR);
1191 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1193 $this->db->rollback();
1196 $this->db->commit();
1218 foreach ($this->holiday as $infos_CP) {
1229 if ($halfday == 0) {
1230 if ($dateStart >= $infos_CP[
'date_debut'] && $dateStart <= $infos_CP[
'date_fin']) {
1233 if ($dateEnd <= $infos_CP[
'date_fin'] && $dateEnd >= $infos_CP[
'date_debut']) {
1236 } elseif ($halfday == -1) {
1238 if ($dateStart >= $infos_CP[
'date_debut'] && $dateStart <= $infos_CP[
'date_fin']) {
1239 if ($dateStart < $infos_CP[
'date_fin'] || in_array($infos_CP[
'halfday'], array(0, -1))) {
1243 if ($dateEnd <= $infos_CP[
'date_fin'] && $dateEnd >= $infos_CP[
'date_debut']) {
1244 if ($dateStart < $dateEnd) {
1247 if ($dateEnd < $infos_CP[
'date_fin'] || in_array($infos_CP[
'halfday'], array(0, -1))) {
1251 } elseif ($halfday == 1) {
1253 if ($dateStart >= $infos_CP[
'date_debut'] && $dateStart <= $infos_CP[
'date_fin']) {
1254 if ($dateStart < $dateEnd) {
1257 if ($dateStart > $infos_CP[
'date_debut'] || in_array($infos_CP[
'halfday'], array(0, 1))) {
1261 if ($dateEnd <= $infos_CP[
'date_fin'] && $dateEnd >= $infos_CP[
'date_debut']) {
1262 if ($dateEnd > $infos_CP[
'date_debut'] || in_array($infos_CP[
'halfday'], array(0, 1))) {
1266 } elseif ($halfday == 2) {
1268 if ($dateStart >= $infos_CP[
'date_debut'] && $dateStart <= $infos_CP[
'date_fin']) {
1269 if ($dateStart < $infos_CP[
'date_fin'] || in_array($infos_CP[
'halfday'], array(0, -1))) {
1273 if ($dateEnd <= $infos_CP[
'date_fin'] && $dateEnd >= $infos_CP[
'date_debut']) {
1274 if ($dateEnd > $infos_CP[
'date_debut'] || in_array($infos_CP[
'halfday'], array(0, 1))) {
1279 dol_print_error(
null,
'Bad value of parameter halfday when calling function verifDateHolidayCP');
1298 $isavailablemorning =
true;
1299 $isavailableafternoon =
true;
1302 $sql =
"SELECT cp.rowid, cp.date_debut as date_start, cp.date_fin as date_end, cp.halfday, cp.statut as status";
1303 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as cp";
1304 $sql .=
" WHERE cp.entity IN (".getEntity(
'holiday').
")";
1305 $sql .=
" AND cp.fk_user = ".(int) $fk_user;
1306 $sql .=
" AND cp.date_debut <= '".$this->db->idate($timestamp).
"' AND cp.date_fin >= '".$this->db->idate($timestamp).
"'";
1307 if ($status !=
'-1') {
1308 $sql .=
" AND cp.statut IN (".$this->db->sanitize($status).
")";
1311 $resql = $this->db->query($sql);
1313 $num_rows = $this->db->num_rows($resql);
1314 if ($num_rows > 0) {
1315 $arrayofrecord = array();
1317 while ($i < $num_rows) {
1318 $obj = $this->db->fetch_object($resql);
1321 $arrayofrecord[$obj->rowid] = array(
'date_start' => $this->db->jdate($obj->date_start),
'date_end' => $this->db->jdate($obj->date_end),
'halfday' => $obj->halfday,
'status' => $obj->status);
1326 $isavailablemorning =
true;
1327 foreach ($arrayofrecord as $record) {
1328 if ($timestamp == $record[
'date_start'] && $record[
'halfday'] == 2) {
1331 if ($timestamp == $record[
'date_start'] && $record[
'halfday'] == -1) {
1334 $isavailablemorning =
false;
1337 $isavailableafternoon =
true;
1338 foreach ($arrayofrecord as $record) {
1339 if ($timestamp == $record[
'date_end'] && $record[
'halfday'] == 2) {
1342 if ($timestamp == $record[
'date_end'] && $record[
'halfday'] == 1) {
1345 $isavailableafternoon =
false;
1353 $result = array(
'morning' => (
int) $isavailablemorning,
'afternoon' => (
int) $isavailableafternoon);
1354 if (!$isavailablemorning) {
1355 $result[
'morning_reason'] =
'leave_request';
1357 if (!$isavailableafternoon) {
1358 $result[
'afternoon_reason'] =
'leave_request';
1373 $langs->load(
'holiday');
1374 $nofetch = !empty($params[
'nofetch']);
1377 $datas[
'picto'] =
img_picto(
'', $this->picto).
' <u class="paddingrightonly">'.$langs->trans(
"Holiday").
'</u>';
1378 if (isset($this->
status)) {
1379 $datas[
'picto'] .=
' '.$this->getLibStatut(5);
1381 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
1383 if (!$nofetch && !empty($this->fk_type)) {
1384 $typeleaves = $this->
getTypes(1, -1);
1385 if (empty($typeleaves[$this->fk_type])) {
1386 $labeltoshow = $langs->trans(
"TypeWasDisabledOrRemoved", $this->fk_type);
1388 $labeltoshow = (($typeleaves[$this->fk_type][
'code'] && $langs->trans($typeleaves[$this->fk_type][
'code']) != $typeleaves[$this->fk_type][
'code']) ? $langs->trans($typeleaves[$this->fk_type][
'code']) : $typeleaves[$this->fk_type][
'label']);
1390 $datas[
'type'] =
'<br><b>'.$langs->trans(
"Type") .
':</b> ' . $labeltoshow;
1392 if (isset($this->halfday) && !empty($this->date_debut) && !empty($this->date_fin)) {
1393 $listhalfday = array(
1394 'morning' => $langs->trans(
"Morning"),
1395 "afternoon" => $langs->trans(
"Afternoon")
1397 $starthalfday = ($this->halfday == -1 || $this->halfday == 2) ?
'afternoon' :
'morning';
1398 $endhalfday = ($this->halfday == 1 || $this->halfday == 2) ?
'morning' :
'afternoon';
1399 $datas[
'date_start'] =
'<br><b>'.$langs->trans(
'DateDebCP') .
'</b>: '.
dol_print_date($this->date_debut,
'day') .
' <span class="opacitymedium">'.$langs->trans($listhalfday[$starthalfday]).
'</span>';
1400 $datas[
'date_end'] =
'<br><b>'.$langs->trans(
'DateFinCP') .
'</b>: '.
dol_print_date($this->date_fin,
'day') .
' <span class="opacitymedium">'.$langs->trans($listhalfday[$endhalfday]).
'</span>';
1416 public function getNomUrl($withpicto = 0, $save_lastsearch_value = -1, $notooltip = 0, $morecss =
'')
1418 global $conf, $langs, $hookmanager;
1420 if (!empty($conf->dol_no_mouse_hover)) {
1427 'objecttype' => $this->element,
1430 $classfortooltip =
'classfortooltip';
1433 $classfortooltip =
'classforajaxtooltip';
1434 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
1440 $url = DOL_URL_ROOT.
'/holiday/card.php?id='.$this->id;
1445 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1446 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
1447 $add_save_lastsearch_values = 1;
1449 if ($add_save_lastsearch_values) {
1450 $url .=
'&save_lastsearch_values=1';
1455 if (empty($notooltip)) {
1457 $label = $langs->trans(
"ShowMyObject");
1458 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
1460 $linkclose .= ($label ?
' title="'.dolPrintHTMLForAttribute($label).
'"' :
' title="tocomplete"');
1461 $linkclose .= $dataparams.
' class="'.$classfortooltip.($morecss ?
' '.$morecss :
'').
'"';
1463 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
1466 $linkstart =
'<a href="'.$url.
'"';
1467 $linkstart .= $linkclose.
'>';
1470 $result .= $linkstart;
1473 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'"'), 0, 0, $notooltip ? 0 : 1);
1475 if ($withpicto != 2) {
1476 $result .= $this->ref;
1478 $result .= $linkend;
1481 $hookmanager->initHooks(array($this->element .
'dao'));
1482 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
1483 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1485 $result = $hookmanager->resPrint;
1487 $result .= $hookmanager->resPrint;
1513 public function LibStatut($status, $mode = 0, $startdate =
'')
1518 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
1526 $this->labelStatusShort[
self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'DraftCP');
1534 $statusType =
'status6';
1535 if (!empty($startdate) && $startdate >=
dol_now()) {
1536 $statusType =
'status4';
1537 $params = array(
'tooltip' => $this->labelStatus[$status].
' - '.$langs->trans(
"Forthcoming"));
1539 if ($status == self::STATUS_DRAFT) {
1540 $statusType =
'status0';
1542 if ($status == self::STATUS_VALIDATED) {
1543 $statusType =
'status1';
1545 if ($status == self::STATUS_CANCELED) {
1546 $statusType =
'status9';
1548 if ($status == self::STATUS_REFUSED) {
1549 $statusType =
'status9';
1552 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode,
'', $params);
1564 public function selectStatutCP($selected = 0, $htmlname =
'select_statut', $morecss =
'minwidth125')
1569 $name = array(
'DraftCP',
'ToReviewCP',
'ApprovedCP',
'CancelCP',
'RefuseCP');
1570 $nb = count($name) + 1;
1573 $out =
'<select name="'.$htmlname.
'" id="'.$htmlname.
'" class="flat'.($morecss ?
' '.$morecss :
'').
'">'.
"\n";
1574 $out .=
'<option value="-1"> </option>'.
"\n";
1577 for ($i = 1; $i < $nb; $i++) {
1578 if ($i == $selected) {
1579 $out .=
'<option value="'.$i.
'" selected>'.$langs->trans($name[$i - 1]).
'</option>'.
"\n";
1581 $out .=
'<option value="'.$i.
'">'.$langs->trans($name[$i - 1]).
'</option>'.
"\n";
1585 $out .=
"</select>\n";
1588 $out .=
ajax_combobox($htmlname, array(), 0, 0,
'resolve', ($showempty < 0 ? (
string) $showempty :
'-1'), $morecss);
1602 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday_config SET";
1603 $sql .=
" value = '".$this->db->escape($value).
"'";
1604 $sql .=
" WHERE name = '".$this->db->escape($name).
"'";
1606 dol_syslog(get_class($this).
'::updateConfCP name='.$name, LOG_DEBUG);
1607 $result = $this->db->query($sql);
1625 $sql =
"SELECT value";
1626 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_config";
1627 $sql .=
" WHERE name = '".$this->db->escape($name).
"'";
1629 dol_syslog(get_class($this).
'::getConfCP name='.$name.
' createifnotfound='.$createifnotfound, LOG_DEBUG);
1630 $result = $this->db->query($sql);
1633 $obj = $this->db->fetch_object($result);
1636 if ($createifnotfound) {
1637 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday_config(name, value)";
1638 $sql .=
" VALUES('".$this->db->escape($name).
"', '".$this->db->escape($createifnotfound).
"')";
1639 $result = $this->db->query($sql);
1641 return $createifnotfound;
1643 $this->error = $this->db->lasterror();
1654 $this->error = $this->db->lasterror();
1669 global $user, $langs;
1673 if (empty($userID) && empty($nbHoliday) && empty($fk_type)) {
1674 $langs->load(
"holiday");
1684 if ($stringInDBForLastUpdate <
'20000101000000') {
1685 $stringInDBForLastUpdate =
'20000101000000';
1696 while ($yearMonthLastUpdate < $yearMonthNow) {
1702 $users = $this->
fetchUsers(
false,
false,
' AND u.statut > 0');
1703 $nbUser = count($users);
1705 $typeleaves = $this->
getTypes(1, 1);
1708 foreach ($users as $userCounter) {
1709 $nbDaysToAdd = (isset($typeleaves[$userCounter[
'type']][
'newbymonth']) ? $typeleaves[$userCounter[
'type']][
'newbymonth'] : 0);
1710 if (empty($nbDaysToAdd)) {
1714 dol_syslog(
"We update leave type id ".$userCounter[
'type'].
" for user id ".$userCounter[
'rowid'], LOG_DEBUG);
1716 $nowHoliday = (float) $userCounter[
'nb_holiday'];
1717 $newSolde = $nowHoliday + $nbDaysToAdd;
1720 $this->
addLogCP($user->id, $userCounter[
'rowid'], $langs->trans(
'HolidayMonthlyCredit'), $newSolde, $userCounter[
'type']);
1722 $result = $this->
updateSoldeCP($userCounter[
'rowid'], $newSolde, $userCounter[
'type']);
1725 $this->db->rollback();
1729 if (empty($decrease)) {
1734 $filter =
" AND cp.statut = ".((int) self::STATUS_APPROVED);
1737 $filter .=
" AND cp.fk_type = ".((int) $userCounter[
'type']);
1738 $this->
fetchByUser($userCounter[
'id'],
'', $filter);
1740 if (empty($this->holiday)) {
1744 $startOfMonth =
dol_mktime(0, 0, 0, (
int) $month, 1, (
int) $year, 1);
1747 foreach ($this->holiday as $obj) {
1748 $startDate = $obj[
'date_debut_gmt'];
1749 $endDate = $obj[
'date_fin_gmt'];
1751 if ($startDate <= $endOfMonth && $startDate < $startOfMonth) {
1752 $startDate = $startOfMonth;
1755 if ($startOfMonth <= $endDate && $endDate > $endOfMonth) {
1756 $endDate = $endOfMonth;
1759 $nbDaysToDeduct = (int)
num_open_day($startDate, $endDate, 0, 1, $obj[
'halfday'], $obj[
'country_id']);
1761 if ($nbDaysToDeduct <= 0) {
1765 $newSolde -= $nbDaysToDeduct;
1768 $this->
addLogCP($user->id, $userCounter[
'rowid'], $obj[
'ref'].
' - '.$langs->trans(
'HolidayConsumption'), $newSolde, $userCounter[
'type']);
1770 $result = $this->
updateSoldeCP($userCounter[
'rowid'], $newSolde, $userCounter[
'type']);
1773 $this->db->rollback();
1781 $lastUpdate =
dol_mktime(0, 0, 0, (
int) $newMonth[
'month'], 1, (
int) $newMonth[
'year']);
1783 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday_config SET";
1784 $sql .=
" value = '".$this->db->escape(
dol_print_date($lastUpdate,
'%Y%m%d%H%M%S')).
"'";
1785 $sql .=
" WHERE name = 'lastUpdate'";
1786 $result = $this->db->query($sql);
1789 $this->db->rollback();
1793 $this->db->commit();
1807 $sql =
"SELECT nb_holiday FROM ".MAIN_DB_PREFIX.
"holiday_users";
1808 $sql .=
" WHERE fk_user = ".(int) $userID.
" AND fk_type = ".(
int) $fk_type;
1809 $resql = $this->db->query($sql);
1811 $num = $this->db->num_rows($resql);
1815 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"holiday_users SET";
1816 $sql .=
" nb_holiday = ".((float) $nbHoliday);
1817 $sql .=
" WHERE fk_user = ".(int) $userID.
" AND fk_type = ".(
int) $fk_type;
1818 $result = $this->db->query($sql);
1821 $this->errors[] = $this->db->lasterror();
1825 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday_users(nb_holiday, fk_user, fk_type) VALUES (";
1826 $sql .= ((float) $nbHoliday);
1827 $sql .=
", ".(int) $userID.
", ".(
int) $fk_type.
")";
1828 $result = $this->db->query($sql);
1831 $this->errors[] = $this->db->lasterror();
1835 $this->errors[] = $this->db->lasterror();
1858 dol_syslog(get_class($this).
'::createCPusers');
1859 $arrayofusers = $this->
fetchUsers(
false,
true);
1861 foreach ($arrayofusers as $users) {
1862 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday_users";
1863 $sql .=
" (fk_user, nb_holiday)";
1864 $sql .=
" VALUES (".((int) $users[
'rowid']).
"', '0')";
1866 $resql = $this->db->query($sql);
1872 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday_users";
1873 $sql .=
" (fk_user, nb_holiday)";
1874 $sql .=
" VALUES (".((int) $userid).
"', '0')";
1876 $resql = $this->db->query($sql);
1892 $sql =
"SELECT nb_holiday";
1893 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_users";
1894 $sql .=
" WHERE fk_user = ".(int) $user_id;
1896 $sql .=
" AND fk_type = ".(int) $fk_type;
1899 dol_syslog(get_class($this).
'::getCPforUser user_id='.$user_id.
' type_id='.$fk_type, LOG_DEBUG);
1900 $result = $this->db->query($sql);
1902 $obj = $this->db->fetch_object($result);
1905 return $obj->nb_holiday;
1922 public function fetchUsers($stringlist =
true, $type =
true, $filters =
'')
1924 dol_syslog(get_class($this).
"::fetchUsers", LOG_DEBUG);
1931 $sql .=
" DISTINCT";
1934 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user as u";
1937 $sql .=
", ".MAIN_DB_PREFIX.
"usergroup_user as ug";
1938 $sql .=
" WHERE ((ug.fk_user = u.rowid";
1939 $sql .=
" AND ug.entity IN (".getEntity(
'usergroup').
"))";
1940 $sql .=
" OR u.entity = 0)";
1942 $sql .=
" WHERE u.entity IN (".getEntity(
'user').
")";
1944 $sql .=
" AND u.statut > 0";
1945 $sql .=
" AND u.employee = 1";
1950 $resql = $this->db->query($sql);
1955 $num = $this->db->num_rows($resql);
1960 $obj = $this->db->fetch_object($resql);
1963 $stringlist .= $obj->rowid;
1965 $stringlist .=
', '.$obj->rowid;
1974 $this->error =
"Error ".$this->db->lasterror();
1979 $sql =
"SELECT DISTINCT cpu.fk_user";
1980 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_users as cpu, ".MAIN_DB_PREFIX.
"user as u";
1981 $sql .=
" WHERE cpu.fk_user = u.rowid";
1986 $resql = $this->db->query($sql);
1991 $num = $this->db->num_rows($resql);
1996 $obj = $this->db->fetch_object($resql);
1999 $stringlist .= $obj->fk_user;
2001 $stringlist .=
', '.$obj->fk_user;
2010 $this->error =
"Error ".$this->db->lasterror();
2021 $sql .=
" DISTINCT";
2023 $sql .=
" u.rowid, u.lastname, u.firstname, u.gender, u.fk_country as country_id, u.photo, u.employee, u.statut as status, u.fk_user";
2024 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user as u";
2027 $sql .=
", ".MAIN_DB_PREFIX.
"usergroup_user as ug";
2028 $sql .=
" WHERE ((ug.fk_user = u.rowid";
2029 $sql .=
" AND ug.entity IN (".getEntity(
'usergroup').
"))";
2030 $sql .=
" OR u.entity = 0)";
2032 $sql .=
" WHERE u.entity IN (".getEntity(
'user').
")";
2035 $sql .=
" AND u.statut > 0";
2036 $sql .=
" AND u.employee = 1";
2041 $resql = $this->db->query($sql);
2046 $tab_result = $this->holiday;
2047 $num = $this->db->num_rows($resql);
2051 $obj = $this->db->fetch_object($resql);
2053 $tab_result[$i][
'rowid'] = (int) $obj->rowid;
2054 $tab_result[$i][
'id'] = (int) $obj->rowid;
2055 $tab_result[$i][
'name'] = $obj->lastname;
2056 $tab_result[$i][
'lastname'] = $obj->lastname;
2057 $tab_result[$i][
'firstname'] = $obj->firstname;
2058 $tab_result[$i][
'gender'] = $obj->gender;
2059 $tab_result[$i][
'status'] = (int) $obj->status;
2060 $tab_result[$i][
'employee'] = (int) $obj->employee;
2061 $tab_result[$i][
'photo'] = $obj->photo;
2062 $tab_result[$i][
'fk_user'] = (int) $obj->fk_user;
2063 $tab_result[$i][
'country_id'] = (int) $obj->country_id;
2073 $this->errors[] =
"Error ".$this->db->lasterror();
2078 $sql =
"SELECT cpu.fk_type, cpu.nb_holiday, u.rowid, u.lastname, u.firstname, u.gender, u.photo, u.employee, u.statut as status, u.fk_user";
2079 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_users as cpu, ".MAIN_DB_PREFIX.
"user as u";
2080 $sql .=
" WHERE cpu.fk_user = u.rowid";
2085 $resql = $this->db->query($sql);
2090 $tab_result = $this->holiday;
2091 $num = $this->db->num_rows($resql);
2095 $obj = $this->db->fetch_object($resql);
2097 $tab_result[$i][
'rowid'] = $obj->rowid;
2098 $tab_result[$i][
'id'] = $obj->rowid;
2099 $tab_result[$i][
'name'] = $obj->lastname;
2100 $tab_result[$i][
'lastname'] = $obj->lastname;
2101 $tab_result[$i][
'firstname'] = $obj->firstname;
2102 $tab_result[$i][
'gender'] = $obj->gender;
2103 $tab_result[$i][
'status'] = $obj->status;
2104 $tab_result[$i][
'employee'] = $obj->employee;
2105 $tab_result[$i][
'photo'] = $obj->photo;
2106 $tab_result[$i][
'fk_user'] = $obj->fk_user;
2108 $tab_result[$i][
'type'] = $obj->fk_type;
2109 $tab_result[$i][
'nb_holiday'] = $obj->nb_holiday;
2117 $this->error =
"Error ".$this->db->lasterror();
2135 $users_validator = array();
2137 $sql =
"SELECT DISTINCT ur.fk_user";
2138 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user_rights as ur, ".MAIN_DB_PREFIX.
"rights_def as rd";
2139 $sql .=
" WHERE ur.fk_id = rd.id and rd.module = 'holiday' AND rd.perms = 'approve'";
2141 $sql .=
" SELECT DISTINCT ugu.fk_user";
2142 $sql .=
" FROM ".MAIN_DB_PREFIX.
"usergroup_user as ugu, ".MAIN_DB_PREFIX.
"usergroup_rights as ur, ".MAIN_DB_PREFIX.
"rights_def as rd";
2143 $sql .=
" WHERE ugu.fk_usergroup = ur.fk_usergroup AND ur.fk_id = rd.id and rd.module = 'holiday' AND rd.perms = 'approve'";
2146 dol_syslog(get_class($this).
"::fetch_users_approver_holiday sql=".$sql);
2147 $result = $this->db->query($sql);
2149 $num_rows = $this->db->num_rows($result);
2151 while ($i < $num_rows) {
2152 $objp = $this->db->fetch_object($result);
2153 array_push($users_validator, $objp->fk_user);
2156 return $users_validator;
2158 $this->error = $this->db->lasterror();
2159 dol_syslog(get_class($this).
"::fetch_users_approver_holiday Error ".$this->error, LOG_ERR);
2172 $sql =
"SELECT count(u.rowid) as compteur";
2173 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user as u";
2174 $sql .=
" WHERE u.statut > 0";
2176 $result = $this->db->query($sql);
2177 $object = $this->db->fetch_object($result);
2188 $sql =
"SELECT count(u.rowid) as compteur";
2189 $sql .=
" FROM ".MAIN_DB_PREFIX.
"user as u LEFT JOIN ".MAIN_DB_PREFIX.
"holiday_users hu ON (hu.fk_user=u.rowid)";
2190 $sql .=
" WHERE u.statut > 0 AND hu.fk_user IS NULL";
2192 $result = $this->db->query($sql);
2193 $object = $this->db->fetch_object($result);
2207 if (empty($userCP)) {
2210 dol_syslog(get_class($this).
'::verifNbUsers userDolibarr='.$userDolibarrWithoutCP.
' userCP='.$userCP);
2225 public function addLogCP($fk_user_action, $fk_user_update, $label, $new_solde, $fk_type)
2233 if ($prev_solde == $new_solde) {
2240 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"holiday_logs (";
2241 $sql .=
"date_action,";
2242 $sql .=
"fk_user_action,";
2243 $sql .=
"fk_user_update,";
2244 $sql .=
"type_action,";
2245 $sql .=
"prev_solde,";
2246 $sql .=
"new_solde,";
2248 $sql .=
") VALUES (";
2249 $sql .=
" '".$this->db->idate(
dol_now()).
"',";
2250 $sql .=
" ".((int) $fk_user_action).
",";
2251 $sql .=
" ".((int) $fk_user_update).
",";
2252 $sql .=
" '".$this->db->escape($label).
"',";
2253 $sql .=
" ".((float) $prev_solde).
",";
2254 $sql .=
" ".((float) $new_solde).
",";
2255 $sql .=
" ".((int) $fk_type);
2258 $resql = $this->db->query($sql);
2261 $this->errors[] =
"Error ".$this->db->lasterror();
2266 $optRowid = $this->db->last_insert_id(MAIN_DB_PREFIX.
"holiday_logs");
2271 foreach ($this->errors as $errmsg) {
2272 dol_syslog(get_class($this).
"::addLogCP ".$errmsg, LOG_ERR);
2273 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
2275 $this->db->rollback();
2278 $this->db->commit();
2293 $sql .=
" cpl.rowid,";
2294 $sql .=
" cpl.date_action,";
2295 $sql .=
" cpl.fk_user_action,";
2296 $sql .=
" cpl.fk_user_update,";
2297 $sql .=
" cpl.type_action,";
2298 $sql .=
" cpl.prev_solde,";
2299 $sql .=
" cpl.new_solde,";
2300 $sql .=
" cpl.fk_type";
2301 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday_logs as cpl";
2302 $sql .=
" WHERE cpl.rowid > 0";
2305 if (!empty($sqlwhere)) {
2306 $sql .=
" ".$sqlwhere;
2310 if (!empty($sqlorder)) {
2311 $sql .=
" ".$sqlorder;
2314 dol_syslog(get_class($this).
"::fetchLog", LOG_DEBUG);
2315 $resql = $this->db->query($sql);
2320 $tab_result = $this->logs;
2321 $num = $this->db->num_rows($resql);
2330 $obj = $this->db->fetch_object($resql);
2332 $tab_result[$i][
'rowid'] = (int) $obj->rowid;
2333 $tab_result[$i][
'id'] = (int) $obj->rowid;
2334 $tab_result[$i][
'date_action'] = (string) $obj->date_action;
2335 $tab_result[$i][
'fk_user_action'] = (int) $obj->fk_user_action;
2336 $tab_result[$i][
'fk_user_update'] = (int) $obj->fk_user_update;
2337 $tab_result[$i][
'type_action'] = (string) $obj->type_action;
2338 $tab_result[$i][
'prev_solde'] = (float) $obj->prev_solde;
2339 $tab_result[$i][
'new_solde'] = (float) $obj->new_solde;
2340 $tab_result[$i][
'fk_type'] = (int) $obj->fk_type;
2345 $this->logs = $tab_result;
2349 $this->error =
"Error ".$this->db->lasterror();
2366 $sql =
"SELECT rowid, code, label, affect, delay, newbymonth";
2367 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_holiday_types";
2368 $sql .=
" WHERE (fk_country IS NULL OR fk_country = ".((int)
$mysoc->country_id).
')';
2369 $sql .=
" AND entity IN (0, ".getEntity(
'c_holiday_types').
")";
2371 $sql .=
" AND active = ".((int) $active);
2374 $sql .=
" AND affect = ".((int) $affect);
2376 $sql .=
" ORDER BY sortorder";
2378 $result = $this->db->query($sql);
2380 $num = $this->db->num_rows($result);
2383 while ($obj = $this->db->fetch_object($result)) {
2384 $types[$obj->rowid] = array(
2385 'id' => $obj->rowid,
2386 'rowid' => $obj->rowid,
2387 'code' => $obj->code,
2388 'label' => $obj->label,
2389 'affect' => $obj->affect,
2390 'delay' => $obj->delay,
2391 'newbymonth' => $obj->newbymonth
2415 $sql =
"SELECT f.rowid, f.statut as status,";
2416 $sql .=
" f.date_create as datec,";
2417 $sql .=
" f.tms as date_modification,";
2418 $sql .=
" f.date_valid as datev,";
2419 $sql .=
" f.date_approval as datea,";
2420 $sql .=
" f.date_refuse as dater,";
2421 $sql .=
" f.fk_user_create as fk_user_creation,";
2422 $sql .=
" f.fk_user_modif as fk_user_modification,";
2423 $sql .=
" f.fk_user_valid as fk_user_validation,";
2424 $sql .=
" f.fk_user_approve as fk_user_approval_done,";
2425 $sql .=
" f.fk_validator as fk_user_approval_expected,";
2426 $sql .=
" f.fk_user_refuse as fk_user_refuse";
2427 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as f";
2428 $sql .=
" WHERE f.rowid = ".((int) $id);
2429 $sql .=
" AND f.entity = ".$conf->entity;
2431 $resql = $this->db->query($sql);
2433 if ($this->db->num_rows($resql)) {
2434 $obj = $this->db->fetch_object($resql);
2436 $this->
id = $obj->rowid;
2438 $this->date_creation = $this->db->jdate($obj->datec);
2439 $this->date_modification = $this->db->jdate($obj->date_modification);
2440 $this->date_validation = $this->db->jdate($obj->datev);
2441 $this->date_approval = $this->db->jdate($obj->datea);
2443 $this->user_creation_id = $obj->fk_user_creation;
2444 $this->user_validation_id = $obj->fk_user_validation;
2445 $this->user_modification_id = $obj->fk_user_modification;
2448 if ($obj->fk_user_approval_done) {
2449 $this->fk_user_approve = $obj->fk_user_approval_done;
2453 $this->db->free($resql);
2469 global $user, $langs;
2473 $this->specimen = 1;
2475 $this->fk_user = $user->id;
2477 $this->date_debut =
dol_now();
2478 $this->date_fin =
dol_now() + (24 * 3600);
2479 $this->date_valid =
dol_now();
2480 $this->fk_validator = $user->id;
2497 $this->nb = array();
2499 $sql =
"SELECT count(h.rowid) as nb";
2500 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as h";
2501 $sql .=
" WHERE h.statut > 1";
2502 $sql .=
" AND h.entity IN (".getEntity(
'holiday').
")";
2503 if (!$user->hasRight(
'holiday',
'readall')) {
2504 $userchildids = $user->getAllChildIds(1);
2505 $sql .=
" AND (h.fk_user IN (".$this->db->sanitize(implode(
',', $userchildids)).
")";
2506 $sql .=
" OR h.fk_validator IN (".$this->db->sanitize(implode(
',', $userchildids)).
"))";
2509 $resql = $this->db->query($sql);
2511 while ($obj = $this->db->fetch_object($resql)) {
2512 $this->nb[
"holidays"] = $obj->nb;
2514 $this->db->free($resql);
2518 $this->error = $this->db->error();
2533 global $conf, $langs;
2541 $sql =
"SELECT h.rowid, h.date_debut";
2542 $sql .=
" FROM ".MAIN_DB_PREFIX.
"holiday as h";
2543 $sql .=
" WHERE h.statut = 2";
2544 $sql .=
" AND h.entity IN (".getEntity(
'holiday').
")";
2545 if (!$user->hasRight(
'holiday',
'read_all')) {
2546 $userchildids = $user->getAllChildIds(1);
2547 $sql .=
" AND (h.fk_user IN (".$this->db->sanitize(implode(
',', $userchildids)).
")";
2548 $sql .=
" OR h.fk_validator IN (".$this->db->sanitize(implode(
',', $userchildids)).
"))";
2551 $resql = $this->db->query($sql);
2553 $langs->load(
"members");
2556 $response->warning_delay = $conf->holiday->approve->warning_delay / 60 / 60 / 24;
2557 $response->label = $langs->trans(
"HolidaysToApprove");
2558 $response->labelShort = $langs->trans(
"ToApprove");
2559 $response->url = DOL_URL_ROOT.
'/holiday/list.php?search_status=2&mainmenu=hrm&leftmenu=holiday';
2562 while ($obj = $this->db->fetch_object($resql)) {
2563 $response->nbtodo++;
2565 if ($this->db->jdate($obj->date_debut) < ($now - $conf->holiday->approve->warning_delay)) {
2566 $response->nbtodolate++;
2573 $this->error = $this->db->error();
2588 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
2590 $return =
'<div class="box-flex-item box-flex-grow-zero">';
2591 $return .=
'<div class="info-box info-box-sm">';
2592 $return .=
'<span class="info-box-icon bg-infobox-action">';
2594 $return .=
'</span>';
2595 $return .=
'<div class="info-box-content">';
2596 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.$this->getNomUrl().
'</span>';
2597 if ($selected >= 0) {
2598 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
2600 if (property_exists($this,
'fk_type')) {
2603 $return .=
'<div class="info_box-label tdoverflowmax100" title="'.dol_escape_htmltag($arraydata[
'labeltype']).
'">'.
dol_escape_htmltag($arraydata[
'labeltype']).
'</div>';
2605 if (property_exists($this,
'date_debut') && property_exists($this,
'date_fin')) {
2606 $return .=
'<span class="info-box-label small">'.dol_print_date($this->date_debut,
'day').
'</span>';
2607 $return .=
' <span class="opacitymedium small">'.$langs->trans(
"To").
'</span> ';
2608 $return .=
'<span class="info-box-label small">'.dol_print_date($this->date_fin,
'day').
'</span>';
2609 if (!empty($arraydata[
'nbopenedday'])) {
2610 $return .=
' ('.$arraydata[
'nbopenedday'].
')';
2613 if (method_exists($this,
'getLibStatut')) {
2614 $return .=
'<div class="info-box-status">'.$this->getLibStatut(3).
'</div>';
2616 $return .=
'</div>';
2617 $return .=
'</div>';
2618 $return .=
'</div>';
if(! $sortfield) if(! $sortorder) $object
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
Class of the module paid holiday.
getTypes($active=-1, $affect=-1)
Return array with list of types.
getNomUrl($withpicto=0, $save_lastsearch_value=-1, $notooltip=0, $morecss='')
Return clickable name (with picto eventually)
verifDateHolidayCP($fk_user, $dateStart, $dateEnd, $halfday=0)
Check if a user is on holiday (partially or completely) into a period.
validate($user=null, $notrigger=0)
Validate leave request.
info($id)
Load information on object.
updateBalance()
Update balance of vacations and check table of users for holidays is complete.
updateConfCP($name, $value)
Met à jour une option du module Holiday Payés.
const STATUS_VALIDATED
Validated status.
const STATUS_DRAFT
Draft status.
fetch($id, $ref='')
Load object in memory from database.
addLogCP($fk_user_action, $fk_user_update, $label, $new_solde, $fk_type)
addLogCP
verifNbUsers($userDolibarrWithoutCP, $userCP)
Compare le nombre d'utilisateur actif de Dolibarr à celui des utilisateurs des congés payés.
verifDateHolidayForTimestamp($fk_user, $timestamp, $status='-1')
Check that a user is not on holiday for a particular timestamp.
approve($user=null, $notrigger=0)
Approve leave request.
getNextNumRef($objsoc)
Returns the reference to the following non used Order depending on the active numbering module define...
const STATUS_REFUSED
Refused.
getConfCP($name, $createifnotfound='')
Return value of a conf parameter for leave module TODO Move this into llx_const table.
load_board($user)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
initAsSpecimen()
Initialise an instance with random values.
create($user, $notrigger=0)
Créer un congés payés dans la base de données.
selectStatutCP($selected=0, $htmlname='select_statut', $morecss='minwidth125')
Show select with list of leave status.
countActiveUsersWithoutCP()
Compte le nombre d'utilisateur actifs dans Dolibarr sans CP.
updateSoldeCP($userID=0, $nbHoliday=0, $fk_type=0)
Met à jour le timestamp de la dernière mise à jour du solde des CP.
update($user=null, $notrigger=0)
Update database.
getCPforUser($user_id, $fk_type=0)
Return the balance of annual leave of a user.
fetch_users_approver_holiday()
Return list of people with permission to validate leave requests.
__construct($db)
Constructor.
loadStateBoard()
Load this->nb for dashboard.
getLibStatut($mode=0)
Returns the label status.
createCPusers($single=false, $userid=0)
Create entries for each user at setup step.
fetchAll($order, $filter)
List all holidays of all users.
const STATUS_CANCELED
Canceled.
fetchLog($sqlorder, $sqlwhere)
List log of leaves.
countActiveUsers()
Compte le nombre d'utilisateur actifs dans Dolibarr.
fetchByUser($user_id, $order='', $filter='')
List holidays for a particular user or list of users.
const STATUS_APPROVED
Approved.
getTooltipContentArray($params)
getTooltipContentArray
fetchUsers($stringlist=true, $type=true, $filters='')
Get list of Users or list of vacation balance.
getKanbanView($option='', $arraydata=null)
Return clickable link of object (with eventually picto)
LibStatut($status, $mode=0, $startdate='')
Returns the label of a status.
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_get_next_month($month, $year)
Return next month.
num_open_day($timestampStart, $timestampEnd, $inhour=0, $lastday=0, $halfday=0, $countryCodeOrId='')
Function to return number of working days (and text of units) between two dates (working days)
dol_stringtotime($string, $gm=1)
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not s...
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_now($mode='gmt')
Return date for now.
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...
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)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
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 a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
getDictionaryValue($tablename, $field, $id, $checkentity=false, $rowidfield='rowid')
Return the value of a filed into a dictionary for the record $id.
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...