| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /* Copyright (C) 2019 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2022 Frédéric France <frederic.france@netlogic.fr>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file recruitment/lib/recruitment.lib.php
- * \ingroup recruitment
- * \brief Library files with common functions for Recruitment
- */
- /**
- * Prepare admin pages header
- *
- * @return array
- */
- function recruitmentAdminPrepareHead()
- {
- global $langs, $conf, $db;
- $extrafields = new ExtraFields($db);
- $extrafields->fetch_name_optionals_label('recruitment_recruitmentjobposition');
- $extrafields->fetch_name_optionals_label('recruitment_recruitmentcandidature');
- $langs->load("recruitment");
- $h = 0;
- $head = array();
- $head[$h][0] = dol_buildpath("/recruitment/admin/setup.php", 1);
- $head[$h][1] = $langs->trans("JobPositions");
- $head[$h][2] = 'settings';
- $h++;
- $head[$h][0] = dol_buildpath("/recruitment/admin/setup_candidatures.php", 1);
- $head[$h][1] = $langs->trans("RecruitmentCandidatures");
- $head[$h][2] = 'settings_candidatures';
- $h++;
- $head[$h][0] = dol_buildpath("/recruitment/admin/public_interface.php", 1);
- $head[$h][1] = $langs->trans("PublicUrl");
- $head[$h][2] = 'publicurl';
- $h++;
- $head[$h][0] = dol_buildpath("/recruitment/admin/jobposition_extrafields.php", 1);
- $head[$h][1] = $langs->trans("ExtrafieldsJobPosition");
- $nbExtrafields = $extrafields->attributes['recruitment_recruitmentjobposition']['count'];
- if ($nbExtrafields > 0) {
- $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
- }
- $head[$h][2] = 'jobposition_extrafields';
- $h++;
- $head[$h][0] = dol_buildpath("/recruitment/admin/candidature_extrafields.php", 1);
- $head[$h][1] = $langs->trans("ExtrafieldsApplication");
- $nbExtrafields = $extrafields->attributes['recruitment_recruitmentcandidature']['count'];
- if ($nbExtrafields > 0) {
- $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
- }
- $head[$h][2] = 'candidature_extrafields';
- $h++;
- // Show more tabs from modules
- // Entries must be declared in modules descriptor with line
- //$this->tabs = array(
- // 'entity:+tabname:Title:@recruitment:/recruitment/mypage.php?id=__ID__'
- //); // to add new tab
- //$this->tabs = array(
- // 'entity:-tabname:Title:@recruitment:/recruitment/mypage.php?id=__ID__'
- //); // to remove a tab
- complete_head_from_modules($conf, $langs, null, $head, $h, 'recruitment');
- complete_head_from_modules($conf, $langs, null, $head, $h, 'recruitment', 'remove');
- return $head;
- }
|