Files
dolibarr/htdocs/recruitment/lib/recruitment.lib.php
Laurent Destailleur de8e291c7e Debug v14
2021-04-29 10:01:10 +02:00

75 lines
2.3 KiB
PHP

<?php
/* Copyright (C) 2020 Adminson Alicealalalamdskfldmjgdfgdfhfghgfh <testldr9@dolicloud.com>
*
* 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;
$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");
$head[$h][2] = 'jobposition_extrafields';
$h++;
$head[$h][0] = dol_buildpath("/recruitment/admin/candidature_extrafields.php", 1);
$head[$h][1] = $langs->trans("ExtrafieldsApplication");
$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');
return $head;
}