dolibarr 18.0.6
variants.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2022 Open-Dsi <support@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
32{
33 global $langs, $conf;
34 $langs->load("products");
35
36 $h = 0;
37 $head = array();
38
39 $head[$h][0] = DOL_URL_ROOT.'/variants/card.php?id='.$object->id;
40 $head[$h][1] = $langs->trans("ProductAttribute");
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, 'product_attribute');
49
50 complete_head_from_modules($conf, $langs, $object, $head, $h, 'product_attribute', 'remove');
51
52 return $head;
53}
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).
productAttributePrepareHead($object)
Prepare array with list of tabs.