dolibarr 21.0.0-alpha
trip.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 * or see https://www.gnu.org/
18 */
19
32{
33 global $langs, $conf;
34
35 $h = 0;
36 $head = array();
37
38 $head[$h][0] = DOL_URL_ROOT.'/compta/deplacement/card.php?id='.$object->id;
39 $head[$h][1] = $langs->trans("Trip");
40 $head[$h][2] = 'card';
41 $h++;
42
43 // Show more tabs from modules
44 // Entries must be declared in modules descriptor with line
45 // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
46 // $this->tabs = array('entity:-tabname); to remove a tab
47 complete_head_from_modules($conf, $langs, $object, $head, $h, 'trip');
48
49 $head[$h][0] = DOL_URL_ROOT.'/compta/deplacement/document.php?id='.$object->id;
50 $head[$h][1] = $langs->trans("Documents");
51 $head[$h][2] = 'documents';
52 $h++;
53
54 $head[$h][0] = DOL_URL_ROOT.'/compta/deplacement/info.php?id='.$object->id;
55 $head[$h][1] = $langs->trans("Info");
56 $head[$h][2] = 'info';
57 $h++;
58
59 complete_head_from_modules($conf, $langs, $object, $head, $h, 'trip', 'remove');
60
61 return $head;
62}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class to manage trips and working credit notes.
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).
trip_prepare_head(Deplacement $object)
Prepare array with list of tabs.
Definition trip.lib.php:31