Fix: Grant right to child classes to use Category methods

This commit is contained in:
Abbes Bahfir 2018-10-19 12:46:54 +01:00
parent fecb6e49c6
commit bfadd39e8c

View File

@ -65,7 +65,7 @@ class Categorie extends CommonObject
*
* @note This array should be remove in future, once previous constants are moved to the string value. Deprecated
*/
private $MAP_ID = array(
protected $MAP_ID = array(
'product' => 0,
'supplier' => 1,
'customer' => 2,
@ -93,7 +93,7 @@ class Categorie extends CommonObject
*
* @note Move to const array when PHP 5.6 will be our minimum target
*/
private $MAP_CAT_FK = array(
protected $MAP_CAT_FK = array(
'product' => 'product',
'customer' => 'soc',
'supplier' => 'soc',
@ -109,7 +109,7 @@ class Categorie extends CommonObject
*
* @note Move to const array when PHP 5.6 will be our minimum target
*/
private $MAP_CAT_TABLE = array(
protected $MAP_CAT_TABLE = array(
'product' => 'product',
'customer' => 'societe',
'supplier' => 'fournisseur',
@ -125,7 +125,7 @@ class Categorie extends CommonObject
*
* @note Move to const array when PHP 5.6 will be our minimum target
*/
private $MAP_OBJ_CLASS = array(
protected $MAP_OBJ_CLASS = array(
'product' => 'Product',
'customer' => 'Societe',
'supplier' => 'Fournisseur',
@ -141,7 +141,7 @@ class Categorie extends CommonObject
*
* @note Move to const array when PHP 5.6 will be our minimum target
*/
private $MAP_OBJ_TABLE = array(
protected $MAP_OBJ_TABLE = array(
'product' => 'product',
'customer' => 'societe',
'supplier' => 'societe',
@ -931,7 +931,7 @@ class Categorie extends CommonObject
*
* @return int <0 if KO, >0 if OK
*/
private function load_motherof()
protected function load_motherof()
{
// phpcs:enable
global $conf;