dolibarr  19.0.0-dev
hrm.lib.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2015 Alexandre Spangaro <aspangaro@open-dsi.fr>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
30 function establishment_prepare_head($object)
31 {
32  global $langs, $conf;
33 
34  $langs->load('hrm');
35 
36  $h = 0;
37  $head = array();
38 
39  $head[$h][0] = DOL_URL_ROOT.'/hrm/establishment/card.php?id='.$object->id;
40  $head[$h][1] = $langs->trans("Establishment");
41  $head[$h][2] = 'card';
42  $h++;
43 
44  // Show more tabs from modules
45  // Entries must be declared in modules descriptor with line
46  // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
47  // $this->tabs = array('entity:-tabname); to remove a tab
48  complete_head_from_modules($conf, $langs, $object, $head, $h, 'establishment');
49 
50  $head[$h][0] = DOL_URL_ROOT.'/hrm/establishment/info.php?id='.$object->id;
51  $head[$h][1] = $langs->trans("Info");
52  $head[$h][2] = 'info';
53  $h++;
54 
55  complete_head_from_modules($conf, $langs, null, $head, $h, 'hrm');
56 
57  complete_head_from_modules($conf, $langs, $object, $head, $h, 'establishment', 'remove');
58 
59  return $head;
60 }
61 
68 {
69  global $langs, $conf;
70 
71  $langs->load('hrm');
72 
73  $h = 0;
74  $head = array();
75 
76  $head[$h][0] = DOL_URL_ROOT.'/hrm/admin/admin_hrm.php';
77  $head[$h][1] = $langs->trans("Parameters");
78  $head[$h][2] = 'parameters';
79  $h++;
80 
81  $head[$h][0] = DOL_URL_ROOT.'/hrm/admin/admin_establishment.php';
82  $head[$h][1] = $langs->trans("Establishments");
83  $head[$h][2] = 'establishments';
84  $h++;
85 
86  // Show more tabs from modules
87  // Entries must be declared in modules descriptor with line
88  // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
89  // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
90  complete_head_from_modules($conf, $langs, null, $head, $h, 'hrm_admin');
91 
92  complete_head_from_modules($conf, $langs, null, $head, $h, 'hrm_admin', 'remove');
93 
94  return $head;
95 }
establishment_prepare_head($object)
Return head table for establishment tabs screen.
Definition: hrm.lib.php:30
hrm_admin_prepare_head()
Return array head with list of tabs to view object informations.
Definition: hrm.lib.php:67
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).