Add cache in fetch_optionnals() to avoid duplicate call to

fetch_name_optionals_label
This commit is contained in:
Laurent Destailleur 2019-09-14 00:02:48 +02:00
parent 4e4172dd1b
commit aad6b003fb

View File

@ -4902,13 +4902,12 @@ abstract class CommonObject
if (! is_array($optionsArray)) if (! is_array($optionsArray))
{ {
// If $extrafields is not a known object, we initialize it. Best practice is to have $extrafields defined into card.php or list.php page. // If $extrafields is not a known object, we initialize it. Best practice is to have $extrafields defined into card.php or list.php page.
// TODO Use of existing $extrafield is not yet ready (must mutualize code that use extrafields in form first) global $extrafields;
// global $extrafields; if (! isset($extrafields) || ! is_object($extrafields))
//if (! is_object($extrafields)) {
//{
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
$extrafields = new ExtraFields($this->db); $extrafields = new ExtraFields($this->db);
//} }
// Load array of extrafields for elementype = $this->table_element // Load array of extrafields for elementype = $this->table_element
if (empty($extrafields->attributes[$this->table_element]['loaded'])) if (empty($extrafields->attributes[$this->table_element]['loaded']))