dolibarr
21.0.0-alpha
Main Page
Related Pages
Topics
Classes
Files
File List
File Members
dolibarr_dev
htdocs
variants
lib
variants.lib.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (C) 2022 Open-Dsi <support@open-dsi.fr>
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
function
productAttributePrepareHead
(
$object
)
34
{
35
global $langs, $conf;
36
$langs->load(
"products"
);
37
38
$h = 0;
39
$head = array();
40
41
$head[$h][0] = DOL_URL_ROOT.
'/variants/card.php?id='
.
$object
->id;
42
$head[$h][1] = $langs->trans(
"ProductAttribute"
);
43
$head[$h][2] =
'card'
;
44
$h++;
45
46
// Show more tabs from modules
47
// Entries must be declared in modules descriptor with line
48
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
49
// $this->tabs = array('entity:-tabname); to remove a tab
50
complete_head_from_modules
($conf, $langs,
$object
, $head, $h,
'product_attribute'
);
51
52
complete_head_from_modules
($conf, $langs,
$object
, $head, $h,
'product_attribute'
,
'remove'
);
53
54
return
$head;
55
}
$object
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition
card.php:58
complete_head_from_modules
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).
Definition
functions.lib.php:10938
productAttributePrepareHead
productAttributePrepareHead($object)
Prepare array with list of tabs.
Definition
variants.lib.php:33
Generated on Tue Oct 1 2024 01:00:36 for
dolibarr
by Doxygen 1.11.0