dolibarr 24.0.0-beta
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-2026 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
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}
56
63{
64 global $langs, $conf, $extrafields;
65
66 $extrafields->fetch_name_optionals_label('product_attribute');
67 $extrafields->fetch_name_optionals_label('product_attribute_value');
68
69 $langs->load("products");
70
71 $h = 0;
72 $head = array();
73
74 $head[$h][0] = DOL_URL_ROOT.'/variants/admin/admin.php';
75 $head[$h][1] = $langs->trans("ProductAttribute");
76 $head[$h][2] = 'admin';
77 $h++;
78
79 $head[$h][0] = DOL_URL_ROOT.'/variants/admin/product_attribute_extrafields.php';
80 $head[$h][1] = $langs->trans("ProductAttributeExtrafields");
81 $nbExtrafields = $extrafields->attributes['product_attribute']['count'];
82 if ($nbExtrafields > 0) {
83 $head[$h][1] .= '<span class="badge marginleftonlyshort">' . $nbExtrafields . '</span>';
84 }
85 $head[$h][2] = 'product_attribute';
86 $h++;
87
88 $head[$h][0] = DOL_URL_ROOT.'/variants/admin/product_attribute_value_extrafields.php';
89 $head[$h][1] = $langs->trans("ProductAttributeValueExtrafields");
90 $nbExtrafields = $extrafields->attributes['product_attribute_value']['count'];
91 if ($nbExtrafields > 0) {
92 $head[$h][1] .= '<span class="badge marginleftonlyshort">' . $nbExtrafields . '</span>';
93 }
94 $head[$h][2] = 'product_attribute_value';
95 $h++;
96
97 // Show more tabs from modules
98 // Entries must be declared in modules descriptor with line
99 // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
100 // $this->tabs = array('entity:-tabname); to remove a tab
101 complete_head_from_modules($conf, $langs, null, $head, $h, 'admin_product_attribute');
102
103 complete_head_from_modules($conf, $langs, null, $head, $h, 'admin_product_attribute', 'remove');
104
105 return $head;
106}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
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).
adminProductAttributePrepareHead()
Prepare array with list of tabs.
productAttributePrepareHead($object)
Prepare array with list of tabs.