dolibarr 21.0.0-alpha
hrm_position.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
3 * Copyright (C) 2021 Greg Rastklan <greg.rastklan@atm-consulting.fr>
4 * Copyright (C) 2021 Jean-Pascal BOUDET <jean-pascal.boudet@atm-consulting.fr>
5 * Copyright (C) 2021 Grégory BLEMAND <gregory.blemand@atm-consulting.fr>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
36{
37 global $db, $langs, $conf;
38
39 $langs->load("hrm");
40
41 $h = 0;
42 $head = array();
43
44 $head[$h][0] = dol_buildpath("/hrm/position_card.php", 1).'?id='.$object->id;
45 $head[$h][1] = $langs->trans("EmployeePosition");
46 $head[$h][2] = 'position';
47 $h++;
48
49 if (isset($object->fields['note_public']) || isset($object->fields['note_private'])) {
50 $nbNote = 0;
51 if (!empty($object->note_private)) {
52 $nbNote++;
53 }
54 if (!empty($object->note_public)) {
55 $nbNote++;
56 }
57 $head[$h][0] = dol_buildpath('/hrm/position_note.php', 1).'?id='.$object->id;
58 $head[$h][1] = $langs->trans('Notes');
59 if ($nbNote > 0) {
60 $head[$h][1] .= (!getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER') ? '<span class="badge marginleftonlyshort">'.$nbNote.'</span>' : '');
61 }
62 $head[$h][2] = 'note';
63 $h++;
64 }
65
66 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
67 require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
68 $upload_dir = $conf->hrm->dir_output."/position/".dol_sanitizeFileName($object->ref);
69 $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$'));
70 $nbLinks = Link::count($db, $object->element, $object->id);
71 $head[$h][0] = dol_buildpath("/hrm/position_document.php", 1).'?id='.$object->id;
72 $head[$h][1] = $langs->trans('Documents');
73 if (($nbFiles + $nbLinks) > 0) {
74 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).'</span>';
75 }
76 $head[$h][2] = 'document';
77 $h++;
78
79 $head[$h][0] = dol_buildpath("/hrm/position_agenda.php", 1).'?id='.$object->id;
80 $head[$h][1] = $langs->trans("Events");
81 $head[$h][2] = 'agenda';
82 $h++;
83
84 // Show more tabs from modules
85 // Entries must be declared in modules descriptor with line
86 //$this->tabs = array(
87 // 'entity:+tabname:Title:@hrm:/hrm/mypage.php?id=__ID__'
88 //); // to add new tab
89 //$this->tabs = array(
90 // 'entity:-tabname:Title:@hrm:/hrm/mypage.php?id=__ID__'
91 //); // to remove a tab
92 complete_head_from_modules($conf, $langs, $object, $head, $h, 'position@hrm');
93
94 complete_head_from_modules($conf, $langs, $object, $head, $h, 'position@hrm', 'remove');
95
96 return $head;
97}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
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.
Definition files.lib.php:63
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
positionCardPrepareHead($object)
Prepare array of tabs for positions.