607 lines
25 KiB
PHP
607 lines
25 KiB
PHP
<?php
|
|
/* Copyright (C) 2026 Frédéric France <frederic.france@free.fr>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/core/lib/admin_extrafields.lib.php
|
|
* \brief Whitelist of elementtype values accepted by the unified
|
|
* extrafields admin page (htdocs/admin/extrafields.php).
|
|
*
|
|
* This is a closed registry: only elementtype values explicitly listed
|
|
* here can ever be processed by the unified extrafields admin page.
|
|
* Do not make this dynamic or pattern-based — the whole point is that
|
|
* an attacker-controlled string can never reach ExtraFields::addExtraField(),
|
|
* ExtraFields::update()/delete(), or the raw SQL built in
|
|
* core/actions_extrafields.inc.php, without having first matched one of
|
|
* these hardcoded keys.
|
|
*/
|
|
|
|
/**
|
|
* Build a closure that mirrors the isModEnabled("product")/isModEnabled("service")
|
|
* conditional found across the product/service family of extrafields admin wrapper
|
|
* pages: the base translation key applies when both modules are enabled, and each
|
|
* of the other two keys applies when only one of the two modules is enabled.
|
|
*
|
|
* This exists purely to avoid repeating the same 8-line conditional in every
|
|
* `title`/`headlabel` closure of the product-family registry entries below —
|
|
* the original wrapper files all contained this exact conditional shape
|
|
* verbatim, only the translation keys (and, for the base key, trans() vs
|
|
* transnoentitiesnoconv()) differ between $title and $textobject.
|
|
*
|
|
* @param string $keyBoth Translation key when both product and service are enabled
|
|
* @param string $keyServiceOnly Translation key when only the service module is enabled
|
|
* @param string $keyProductOnly Translation key when only the product module is enabled
|
|
* @param bool $noconv Use transnoentitiesnoconv() instead of trans() for $keyBoth,
|
|
* matching the original wrapper files' $textobject assignment
|
|
* @return callable
|
|
*/
|
|
function extrafieldsAdminProductServiceLabel($keyBoth, $keyServiceOnly, $keyProductOnly, $noconv = false)
|
|
{
|
|
return function () use ($keyBoth, $keyServiceOnly, $keyProductOnly, $noconv) {
|
|
global $langs;
|
|
$label = $noconv ? $langs->transnoentitiesnoconv($keyBoth) : $langs->trans($keyBoth);
|
|
if (!isModEnabled("product")) {
|
|
$label = $langs->trans($keyServiceOnly);
|
|
} elseif (!isModEnabled("service")) {
|
|
$label = $langs->trans($keyProductOnly);
|
|
}
|
|
return $label;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Return the whitelist of elementtype values accepted by
|
|
* htdocs/admin/extrafields.php, and the page metadata needed to render
|
|
* each one (which tab-bar function to call, which lang files to load, ...).
|
|
*
|
|
* `headlabel` is the string (or no-arg callable returning an already-translated
|
|
* string) passed to dol_get_fiche_head()'s $title argument (the tab-head picto's
|
|
* alt/title tooltip). `textobject` is the string (or callable) shown in the
|
|
* "Define any additional / custom attributes that must be added to: %s" sentence
|
|
* rendered by core/tpl/admin_extrafields_view.tpl.php. The two original per-object
|
|
* wrapper files each set these independently and they are frequently NOT the same
|
|
* lang key — do not assume they match. `textobject` is optional and falls back to
|
|
* the *resolved* `headlabel` value when omitted, which is safe only when the source
|
|
* wrapper file passed the same string (or the same variable) to both, or never set
|
|
* $textobject at all. Like `title`, `headlabel`/`textobject` callables are called
|
|
* with no arguments and their return value is used as-is (already translated) —
|
|
* they are NOT passed through $langs->trans()/transnoentitiesnoconv() again.
|
|
*
|
|
* @return array<string,array{headfunction:string,headfile:string,tabid:string,headlabel:string|callable,headpicto:string,title:string|callable,helpurl:string,langs:string[],textobject?:string|callable}>
|
|
*/
|
|
function getExtrafieldsAdminMap()
|
|
{
|
|
return array(
|
|
'societe' => array(
|
|
'headfunction' => 'societe_admin_prepare_head',
|
|
'headfile' => 'core/lib/company.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'ThirdParties',
|
|
'textobject' => 'ThirdParty',
|
|
'headpicto' => 'company',
|
|
'title' => 'CompanySetup',
|
|
'helpurl' => 'EN:Module Third Parties setup|FR:Paramétrage_du_module_Tiers',
|
|
'langs' => array('companies', 'admin', 'members'),
|
|
),
|
|
'socpeople' => array(
|
|
'headfunction' => 'societe_admin_prepare_head',
|
|
'headfile' => 'core/lib/company.lib.php',
|
|
'tabid' => 'attributes_contacts',
|
|
'headlabel' => 'ThirdParties',
|
|
'textobject' => 'ContactsAddresses',
|
|
'headpicto' => 'company',
|
|
'title' => 'CompanySetup',
|
|
'helpurl' => 'EN:Module Third Parties setup|FR:Paramétrage_du_module_Tiers',
|
|
'langs' => array('companies', 'admin'),
|
|
),
|
|
'product' => array(
|
|
'headfunction' => 'product_admin_prepare_head',
|
|
'headfile' => 'core/lib/product.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => extrafieldsAdminProductServiceLabel('ProductsAndServices', 'Services', 'Products', true),
|
|
'headpicto' => 'product',
|
|
'title' => extrafieldsAdminProductServiceLabel('ProductServiceSetup', 'ServiceSetup', 'ProductSetup'),
|
|
'helpurl' => '',
|
|
'langs' => array('companies', 'admin', 'products'),
|
|
),
|
|
'product_lang' => array(
|
|
'headfunction' => 'product_admin_prepare_head',
|
|
'headfile' => 'core/lib/product.lib.php',
|
|
'tabid' => 'translationAttributes',
|
|
'headlabel' => 'ProductLangExtrafieldsSetup',
|
|
'textobject' => 'Product',
|
|
'headpicto' => 'product',
|
|
'title' => 'ProductLangExtrafieldsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'products'),
|
|
),
|
|
'product_price' => array(
|
|
'headfunction' => 'product_admin_prepare_head',
|
|
'headfile' => 'core/lib/product.lib.php',
|
|
'tabid' => 'levelAttributes',
|
|
'headlabel' => extrafieldsAdminProductServiceLabel('ProductsAndServices', 'Services', 'Products', true),
|
|
'headpicto' => 'product',
|
|
'title' => extrafieldsAdminProductServiceLabel('ProductServiceSetup', 'ServiceSetup', 'ProductSetup'),
|
|
'helpurl' => '',
|
|
'langs' => array('companies', 'admin', 'products'),
|
|
),
|
|
'product_customer_price' => array(
|
|
'headfunction' => 'product_admin_prepare_head',
|
|
'headfile' => 'core/lib/product.lib.php',
|
|
'tabid' => 'customerAttributes',
|
|
'headlabel' => extrafieldsAdminProductServiceLabel('ProductsAndServices', 'Services', 'Products', true),
|
|
'headpicto' => 'product',
|
|
'title' => extrafieldsAdminProductServiceLabel('ProductServiceSetup', 'ServiceSetup', 'ProductSetup'),
|
|
'helpurl' => '',
|
|
'langs' => array('companies', 'admin', 'products'),
|
|
),
|
|
'product_fournisseur_price' => array(
|
|
'headfunction' => 'product_admin_prepare_head',
|
|
'headfile' => 'core/lib/product.lib.php',
|
|
'tabid' => 'supplierAttributes',
|
|
'headlabel' => extrafieldsAdminProductServiceLabel('ProductsAndServices', 'Services', 'Products', true),
|
|
'headpicto' => 'product',
|
|
'title' => extrafieldsAdminProductServiceLabel('ProductServiceSetup', 'ServiceSetup', 'ProductSetup'),
|
|
'helpurl' => '',
|
|
'langs' => array('companies', 'admin', 'products'),
|
|
),
|
|
'product_lot' => array(
|
|
'headfunction' => 'product_lot_admin_prepare_head',
|
|
'headfile' => 'core/lib/product.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'Batch',
|
|
'headpicto' => 'lot',
|
|
'title' => 'ProductLotSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('companies', 'admin', 'products', 'productbatch'),
|
|
),
|
|
'entrepot' => array(
|
|
'headfunction' => 'stock_admin_prepare_head',
|
|
'headfile' => 'core/lib/stock.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'StockSetup',
|
|
'textobject' => 'Warehouses',
|
|
'headpicto' => 'stock',
|
|
'title' => 'StockSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('companies', 'admin', 'stocks'),
|
|
),
|
|
'stock_mouvement' => array(
|
|
'headfunction' => 'stock_admin_prepare_head',
|
|
'headfile' => 'core/lib/stock.lib.php',
|
|
'tabid' => 'stockMouvementAttributes',
|
|
'headlabel' => 'StockMouvementExtraFields',
|
|
'textobject' => 'StockMovement',
|
|
'headpicto' => 'account',
|
|
'title' => 'StockSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('stock@stock', 'admin'),
|
|
),
|
|
'inventory' => array(
|
|
'headfunction' => 'stock_admin_prepare_head',
|
|
'headfile' => 'core/lib/stock.lib.php',
|
|
'tabid' => 'inventoryAttributes',
|
|
'headlabel' => 'InventoryExtraFields',
|
|
'textobject' => 'Inventory',
|
|
'headpicto' => 'account',
|
|
'title' => 'InventorySetup',
|
|
'helpurl' => '',
|
|
'langs' => array('stock@stock', 'admin'),
|
|
),
|
|
'product_attribute' => array(
|
|
'headfunction' => 'adminProductAttributePrepareHead',
|
|
'headfile' => 'variants/lib/variants.lib.php',
|
|
'tabid' => 'product_attribute',
|
|
'headlabel' => 'ProductAttributeExtrafieldsSetup',
|
|
'headpicto' => 'product',
|
|
'title' => 'ProductAttributeExtrafieldsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'product'),
|
|
),
|
|
'product_attribute_value' => array(
|
|
'headfunction' => 'adminProductAttributePrepareHead',
|
|
'headfile' => 'variants/lib/variants.lib.php',
|
|
'tabid' => 'product_attribute_value',
|
|
'headlabel' => 'ProductAttributeValueExtrafieldsSetup',
|
|
'headpicto' => 'product',
|
|
'title' => 'ProductAttributeValueExtrafieldsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'sendings'),
|
|
),
|
|
'adherent' => array(
|
|
'headfunction' => 'member_admin_prepare_head',
|
|
'headfile' => 'core/lib/member.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'Members',
|
|
'headpicto' => 'user',
|
|
'title' => 'MembersSetup',
|
|
'helpurl' => 'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder',
|
|
'langs' => array('admin', 'members'),
|
|
),
|
|
'adherent_type' => array(
|
|
'headfunction' => 'member_admin_prepare_head',
|
|
'headfile' => 'core/lib/member.lib.php',
|
|
'tabid' => 'attributes_type',
|
|
'headlabel' => 'Members',
|
|
'textobject' => 'MembersTypes',
|
|
'headpicto' => 'user',
|
|
'title' => 'MembersSetup',
|
|
'helpurl' => 'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder',
|
|
'langs' => array('admin', 'members'),
|
|
),
|
|
'bank_account' => array(
|
|
'headfunction' => 'bank_admin_prepare_head',
|
|
'headfile' => 'core/lib/bank.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'BankSetupModule',
|
|
'textobject' => 'Bank',
|
|
'headpicto' => 'account',
|
|
'title' => 'BankSetupModule',
|
|
'helpurl' => '',
|
|
'langs' => array('banks', 'admin'),
|
|
),
|
|
'bank' => array(
|
|
'headfunction' => 'bank_admin_prepare_head',
|
|
'headfile' => 'core/lib/bank.lib.php',
|
|
'tabid' => 'bankline_extrafields',
|
|
'headlabel' => 'BankSetupModule',
|
|
'textobject' => 'BankTransaction',
|
|
'headpicto' => 'account',
|
|
'title' => 'BankSetupModule',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'companies', 'bills', 'other', 'banks'),
|
|
),
|
|
'paiement' => array(
|
|
'headfunction' => 'bank_admin_prepare_head',
|
|
'headfile' => 'core/lib/bank.lib.php',
|
|
'tabid' => 'bank_payments_extrafields',
|
|
'headlabel' => 'BankSetupModule',
|
|
'textobject' => 'BankTransaction',
|
|
'headpicto' => 'account',
|
|
'title' => 'BankSetupModule',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'companies', 'bills', 'other', 'banks'),
|
|
),
|
|
'payment_various' => array(
|
|
'headfunction' => 'bank_admin_prepare_head',
|
|
'headfile' => 'core/lib/bank.lib.php',
|
|
'tabid' => 'bank_various_payment_extrafields',
|
|
'headlabel' => 'BankSetupModule',
|
|
'textobject' => 'VariousPayments',
|
|
'headpicto' => '',
|
|
'title' => 'BankSetupModule',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'banks', 'other'),
|
|
),
|
|
'bom_bom' => array(
|
|
'headfunction' => 'bomAdminPrepareHead',
|
|
'headfile' => 'bom/lib/bom.lib.php',
|
|
'tabid' => 'bom_extrafields',
|
|
'headlabel' => 'ExtraFields',
|
|
'textobject' => 'BOM',
|
|
'headpicto' => 'account',
|
|
'title' => 'BOMsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('mrp', 'admin'),
|
|
),
|
|
'bom_bomline' => array(
|
|
'headfunction' => 'bomAdminPrepareHead',
|
|
'headfile' => 'bom/lib/bom.lib.php',
|
|
'tabid' => 'bomline_extrafields',
|
|
'headlabel' => 'ExtraFields',
|
|
'textobject' => 'BOM',
|
|
'headpicto' => 'account',
|
|
'title' => 'BOMsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('mrp', 'admin'),
|
|
),
|
|
'delivery' => array(
|
|
'headfunction' => 'expedition_admin_prepare_head',
|
|
'headfile' => 'core/lib/expedition.lib.php',
|
|
'tabid' => 'attributes_receivings',
|
|
'headlabel' => 'Receivings',
|
|
'textobject' => 'Receivings',
|
|
'headpicto' => 'shipment',
|
|
'title' => 'SendingsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'sendings'),
|
|
),
|
|
'deliverydet' => array(
|
|
'headfunction' => 'expedition_admin_prepare_head',
|
|
'headfile' => 'core/lib/expedition.lib.php',
|
|
'tabid' => 'attributeslines_receivings',
|
|
'headlabel' => 'Receivings',
|
|
'textobject' => 'Receivings',
|
|
'headpicto' => 'shipment',
|
|
'title' => 'SendingsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'sendings'),
|
|
),
|
|
'expedition' => array(
|
|
'headfunction' => 'expedition_admin_prepare_head',
|
|
'headfile' => 'core/lib/expedition.lib.php',
|
|
'tabid' => 'attributes_shipment',
|
|
'headlabel' => 'Sendings',
|
|
'textobject' => 'Sendings',
|
|
'headpicto' => 'shipment',
|
|
'title' => 'SendingsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'sendings'),
|
|
),
|
|
'expeditiondet' => array(
|
|
'headfunction' => 'expedition_admin_prepare_head',
|
|
'headfile' => 'core/lib/expedition.lib.php',
|
|
'tabid' => 'attributeslines_shipment',
|
|
'headlabel' => 'Sendings',
|
|
'textobject' => 'Sendings',
|
|
'headpicto' => 'shipment',
|
|
'title' => 'SendingsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'sendings'),
|
|
),
|
|
'reception' => array(
|
|
'headfunction' => 'reception_admin_prepare_head',
|
|
'headfile' => 'core/lib/reception.lib.php',
|
|
'tabid' => 'attributes_reception',
|
|
'headlabel' => 'Receptions',
|
|
'textobject' => 'Receptions',
|
|
'headpicto' => 'reception',
|
|
'title' => 'ReceptionsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'receptions', 'sendings'),
|
|
),
|
|
'receptiondet_batch' => array(
|
|
'headfunction' => 'reception_admin_prepare_head',
|
|
'headfile' => 'core/lib/reception.lib.php',
|
|
'tabid' => 'attributeslines_reception',
|
|
'headlabel' => 'Receptions',
|
|
'textobject' => 'Receptions',
|
|
'headpicto' => 'reception',
|
|
'title' => 'ReceptionsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'receptions'),
|
|
),
|
|
'ecm_directories' => array(
|
|
'headfunction' => 'ecm_admin_prepare_head',
|
|
'headfile' => 'core/lib/ecm.lib.php',
|
|
'tabid' => 'attributes_ecm_directories',
|
|
'headlabel' => '',
|
|
'textobject' => 'ECM',
|
|
'headpicto' => '',
|
|
'title' => 'ECMSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'ecm'),
|
|
),
|
|
'ecm_files' => array(
|
|
'headfunction' => 'ecm_admin_prepare_head',
|
|
'headfile' => 'core/lib/ecm.lib.php',
|
|
'tabid' => 'attributes_ecm_files',
|
|
'headlabel' => '',
|
|
'textobject' => 'ECM',
|
|
'headpicto' => '',
|
|
'title' => 'ECMSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'ecm'),
|
|
),
|
|
'actioncomm' => array(
|
|
'headfunction' => 'eventorganizationAdminPrepareHead',
|
|
'headfile' => 'core/lib/eventorganization.lib.php',
|
|
'tabid' => 'eventorganization_extrafields',
|
|
'headlabel' => 'ExtraFields',
|
|
'textobject' => 'ConferenceOrBooth',
|
|
'headpicto' => 'eventorganization',
|
|
'title' => 'EventOrganizationSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('eventorganization', 'admin'),
|
|
),
|
|
'eventorganization_conferenceorboothattendee' => array(
|
|
'headfunction' => 'eventorganizationAdminPrepareHead',
|
|
'headfile' => 'core/lib/eventorganization.lib.php',
|
|
'tabid' => 'conferenceorboothattendee_extrafields',
|
|
'headlabel' => 'ConferenceOrBoothAttendeeExtraFields',
|
|
'textobject' => 'ConferenceOrBoothAttendee',
|
|
'headpicto' => 'eventorganization',
|
|
'title' => 'EventOrganizationSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('eventorganization', 'admin'),
|
|
),
|
|
'expensereport' => array(
|
|
'headfunction' => 'expensereport_admin_prepare_head',
|
|
'headfile' => 'core/lib/expensereport.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'ExpenseReports',
|
|
'textobject' => 'ExpenseReports',
|
|
'headpicto' => 'trip',
|
|
'title' => 'ExpenseReportsSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'errors', 'trips', 'other'),
|
|
),
|
|
'holiday' => array(
|
|
'headfunction' => 'holiday_admin_prepare_head',
|
|
'headfile' => 'core/lib/holiday.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'Holidays',
|
|
'textobject' => 'Holidays',
|
|
'headpicto' => 'holiday',
|
|
'title' => 'HolidaySetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'errors', 'holiday', 'other'),
|
|
),
|
|
'knowledgemanagement_knowledgerecord' => array(
|
|
'headfunction' => 'knowledgemanagementAdminPrepareHead',
|
|
'headfile' => 'knowledgemanagement/lib/knowledgemanagement.lib.php',
|
|
'tabid' => 'extra',
|
|
'headlabel' => 'KnowledgeRecordExtraFields',
|
|
'textobject' => 'KnowledgeRecord',
|
|
'headpicto' => 'knowledgemanagement',
|
|
'title' => 'KnowledgeManagementSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('knowledgemanagement', 'admin'),
|
|
),
|
|
'mrp_mo' => array(
|
|
'headfunction' => 'mrpAdminPrepareHead',
|
|
'headfile' => 'mrp/lib/mrp.lib.php',
|
|
'tabid' => 'mrp_extrafields',
|
|
'headlabel' => 'ExtraFields',
|
|
'textobject' => 'ManufacturingOrder',
|
|
'headpicto' => 'account',
|
|
'title' => 'MrpSetupPage',
|
|
'helpurl' => '',
|
|
'langs' => array('mrp', 'admin'),
|
|
),
|
|
'mrp_production' => array(
|
|
'headfunction' => 'mrpAdminPrepareHead',
|
|
'headfile' => 'mrp/lib/mrp.lib.php',
|
|
'tabid' => 'mrp_production_extrafields',
|
|
'headlabel' => 'ExtraFields',
|
|
'textobject' => 'ManufacturingOrder',
|
|
'headpicto' => 'account',
|
|
'title' => 'MrpSetupPage',
|
|
'helpurl' => '',
|
|
'langs' => array('mrp', 'admin'),
|
|
),
|
|
'commande' => array(
|
|
'headfunction' => 'order_admin_prepare_head',
|
|
'headfile' => 'core/lib/order.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'Orders',
|
|
'textobject' => 'Orders',
|
|
'headpicto' => 'order',
|
|
'title' => 'OrdersSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'orders'),
|
|
),
|
|
'commandedet' => array(
|
|
'headfunction' => 'order_admin_prepare_head',
|
|
'headfile' => 'core/lib/order.lib.php',
|
|
'tabid' => 'attributeslines',
|
|
'headlabel' => 'Orders',
|
|
'textobject' => 'Orders',
|
|
'headpicto' => 'order',
|
|
'title' => 'OrdersSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'orders'),
|
|
),
|
|
// The supplier order module is mid-transition between the legacy 'fournisseur'
|
|
// module (core/lib/fourn.lib.php, function supplierorder_admin_prepare_head())
|
|
// and the new split 'supplier_order' module (core/lib/supplier_order.lib.php,
|
|
// function supplier_order_admin_prepare_head()), selected at runtime by the
|
|
// MAIN_USE_NEW_SUPPLIERMOD conf option — this mirrors the exact conditional
|
|
// the original (now-deleted) per-object supplier order extrafields admin wrapper
|
|
// files used to pick which lib file to require and which head function
|
|
// to call. Both functions build a $head array containing the same 'supplierorder'
|
|
// / 'supplierorderdet' tab id, so only headfunction/headfile need to vary.
|
|
'commande_fournisseur' => array(
|
|
'headfunction' => getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') ? 'supplier_order_admin_prepare_head' : 'supplierorder_admin_prepare_head',
|
|
'headfile' => getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') ? 'core/lib/supplier_order.lib.php' : 'core/lib/fourn.lib.php',
|
|
'tabid' => 'supplierorder',
|
|
'headlabel' => 'Suppliers',
|
|
'textobject' => 'SuppliersOrders',
|
|
'headpicto' => 'company',
|
|
'title' => 'SuppliersSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'orders'),
|
|
),
|
|
'commande_fournisseurdet' => array(
|
|
'headfunction' => getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') ? 'supplier_order_admin_prepare_head' : 'supplierorder_admin_prepare_head',
|
|
'headfile' => getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') ? 'core/lib/supplier_order.lib.php' : 'core/lib/fourn.lib.php',
|
|
'tabid' => 'supplierorderdet',
|
|
'headlabel' => 'Suppliers',
|
|
'textobject' => 'SuppliersOrders',
|
|
'headpicto' => 'company',
|
|
'title' => 'SuppliersSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'orders'),
|
|
),
|
|
'resource' => array(
|
|
'headfunction' => 'resource_admin_prepare_head',
|
|
'headfile' => 'core/lib/resource.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'ResourceSingular',
|
|
'textobject' => 'ResourceSingular',
|
|
'headpicto' => 'action',
|
|
'title' => 'ResourceSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'other', 'resource'),
|
|
),
|
|
'ticket' => array(
|
|
'headfunction' => 'ticketAdminPrepareHead',
|
|
'headfile' => 'core/lib/ticket.lib.php',
|
|
'tabid' => 'attributes',
|
|
'headlabel' => 'Module56000Name',
|
|
'textobject' => 'Ticket',
|
|
'headpicto' => 'ticket',
|
|
'title' => 'TicketSetup',
|
|
'helpurl' => 'FR:Module_Ticket',
|
|
'langs' => array('ticket', 'admin'),
|
|
),
|
|
'asset' => array(
|
|
'headfunction' => 'assetAdminPrepareHead',
|
|
'headfile' => 'core/lib/asset.lib.php',
|
|
'tabid' => 'asset_extrafields',
|
|
'headlabel' => 'AssetSetup',
|
|
'textobject' => 'Assets',
|
|
'headpicto' => 'asset',
|
|
'title' => 'AssetSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('assets', 'admin', 'companies'),
|
|
),
|
|
'asset_model' => array(
|
|
'headfunction' => 'assetAdminPrepareHead',
|
|
'headfile' => 'core/lib/asset.lib.php',
|
|
'tabid' => 'assetmodel_extrafields',
|
|
'headlabel' => 'AssetSetup',
|
|
'textobject' => 'AssetModels',
|
|
'headpicto' => 'asset',
|
|
'title' => 'AssetSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('assets', 'admin', 'companies'),
|
|
),
|
|
'workstation_workstation' => array(
|
|
'headfunction' => 'workstationAdminPrepareHead',
|
|
'headfile' => 'workstation/lib/workstation.lib.php',
|
|
'tabid' => 'workstation_extrafields',
|
|
'headlabel' => 'WorkstationSetup',
|
|
'textobject' => 'Workstation',
|
|
'headpicto' => 'workstation',
|
|
'title' => 'WorkstationSetup',
|
|
'helpurl' => '',
|
|
'langs' => array('workstation', 'admin'),
|
|
),
|
|
'categorie' => array(
|
|
'headfunction' => 'categoriesadmin_prepare_head',
|
|
'headfile' => 'core/lib/categories.lib.php',
|
|
'tabid' => 'attributes_categories',
|
|
'headlabel' => 'Categories',
|
|
'textobject' => 'Categories',
|
|
'headpicto' => 'category',
|
|
'title' => 'Categories',
|
|
'helpurl' => 'EN:Module Categories|FR:Module Catégories|ES:Módulo Categorías|DE:Modul_Kategorien',
|
|
'langs' => array('categories', 'admin'),
|
|
),
|
|
'categorie_lang' => array(
|
|
'headfunction' => 'categoriesadmin_prepare_head',
|
|
'headfile' => 'core/lib/categories.lib.php',
|
|
'tabid' => 'translationAttributes',
|
|
'headlabel' => 'CategoriesTranslationsExtrafields',
|
|
'textobject' => 'Category',
|
|
'headpicto' => 'categorie',
|
|
'title' => 'CategoriesTranslationsExtrafields',
|
|
'helpurl' => '',
|
|
'langs' => array('admin', 'categories'),
|
|
),
|
|
);
|
|
}
|