dolibarr 21.0.0-alpha
recruitment_recruitmentcandidature.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) ---Put here your own copyright and developer email---
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
33{
34 global $db, $langs, $conf;
35
36 $langs->load("recruitment");
37
38 $h = 0;
39 $head = array();
40
41 $head[$h][0] = DOL_URL_ROOT . '/recruitment/recruitmentcandidature_card.php?id=' . $object->id;
42 $head[$h][1] = $langs->trans("RecruitmentCandidature");
43 $head[$h][2] = 'card';
44 $h++;
45
46 // if ($conf->global->MAIN_FEATURES_LEVEL >= 2) {
47 // $head[$h][0] = DOL_URL_ROOT.'/recruitment/recruitmentrating_card.php?id='.$object->id;
48 // $head[$h][1] = $langs->trans("Rating");
49 // $head[$h][2] = 'rating';
50 // $h++;
51 // }
52
53 if (isset($object->fields['note_public']) || isset($object->fields['note_private'])) {
54 $nbNote = 0;
55 if (!empty($object->note_private)) {
56 $nbNote++;
57 }
58 if (!empty($object->note_public)) {
59 $nbNote++;
60 }
61 $head[$h][0] = DOL_URL_ROOT . '/recruitment/recruitmentcandidature_note.php?id=' . $object->id;
62 $head[$h][1] = $langs->trans('Notes');
63 if ($nbNote > 0) {
64 $head[$h][1] .= '<span class="badge marginleftonlyshort">' . $nbNote . '</span>';
65 }
66 $head[$h][2] = 'note';
67 $h++;
68 }
69
70 require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php';
71 require_once DOL_DOCUMENT_ROOT . '/core/class/link.class.php';
72 $upload_dir = $conf->recruitment->dir_output . "/recruitmentcandidature/" . dol_sanitizeFileName($object->ref);
73 $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$'));
74 $nbLinks = Link::count($db, $object->element, $object->id);
75 $head[$h][0] = DOL_URL_ROOT . '/recruitment/recruitmentcandidature_document.php?id=' . $object->id;
76 $head[$h][1] = $langs->trans('Documents');
77 if (($nbFiles + $nbLinks) > 0) {
78 $head[$h][1] .= '<span class="badge marginleftonlyshort">' . ($nbFiles + $nbLinks) . '</span>';
79 }
80 $head[$h][2] = 'document';
81 $h++;
82
83 $head[$h][0] = DOL_URL_ROOT . '/recruitment/recruitmentcandidature_agenda.php?id=' . $object->id;
84 $head[$h][1] = $langs->trans("Events");
85 $head[$h][2] = 'agenda';
86 $h++;
87
88 // Show more tabs from modules
89 // Entries must be declared in modules descriptor with line
90 //$this->tabs = array(
91 // 'entity:+tabname:Title:@recruitment:/recruitment/mypage.php?id=__ID__'
92 //); // to add new tab
93 //$this->tabs = array(
94 // 'entity:-tabname:Title:@recruitment:/recruitment/mypage.php?id=__ID__'
95 //); // to remove a tab
96 complete_head_from_modules($conf, $langs, $object, $head, $h, 'recruitmentcandidature');
97
98 complete_head_from_modules($conf, $langs, $object, $head, $h, 'recruitmentcandidature', 'remove');
99
100 return $head;
101}
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_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).
recruitmentCandidaturePrepareHead($object)
Prepare array of tabs for RecruitmentCandidature.