mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-14 08:54:21 +01:00
FIX several minor troubles with modulebuilder
This commit is contained in:
@@ -1276,6 +1276,18 @@ class MyObjectLine extends CommonObjectLine
|
||||
*/
|
||||
public $fk_parent_attribute = ''; // Example: '' or 'fk_myobject'
|
||||
|
||||
/**
|
||||
* @var int<0,1> Does object support extrafields ? 0=No, 1=Yes
|
||||
*/
|
||||
public $isextrafieldmanaged = 0;
|
||||
|
||||
/**
|
||||
* @var int<0,1>|string|null Does this object support multicompany module ?
|
||||
* 0=No test on entity, 1=Test with field entity in local table, 'field@table'=Test entity into the field@table (example 'fk_soc@societe')
|
||||
*/
|
||||
public $ismultientitymanaged = 0;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
@@ -1284,7 +1296,5 @@ class MyObjectLine extends CommonObjectLine
|
||||
public function __construct(DoliDB $db)
|
||||
{
|
||||
$this->db = $db;
|
||||
|
||||
$this->isextrafieldmanaged = 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user