Standardize and update code
This commit is contained in:
parent
e1a03c49cf
commit
9c9f5bd3c3
@ -107,6 +107,11 @@ class Societe extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $nom;
|
public $nom;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string name
|
||||||
|
*/
|
||||||
|
public $name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Alias names (commercial, trademark or alias names)
|
* Alias names (commercial, trademark or alias names)
|
||||||
* @var string
|
* @var string
|
||||||
|
|||||||
@ -46,6 +46,7 @@ class UserGroup extends CommonObject
|
|||||||
public $table_element='usergroup';
|
public $table_element='usergroup';
|
||||||
|
|
||||||
public $ismultientitymanaged = 1; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
|
public $ismultientitymanaged = 1; // 0=No test on entity, 1=Test with field entity, 2=Test with link by societe
|
||||||
|
|
||||||
public $picto='group';
|
public $picto='group';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -53,16 +54,26 @@ class UserGroup extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $entity;
|
public $entity;
|
||||||
|
|
||||||
public $name; // Name of group
|
|
||||||
/**
|
/**
|
||||||
|
* @var string
|
||||||
* @deprecated
|
* @deprecated
|
||||||
* @see name
|
* @see name
|
||||||
*/
|
*/
|
||||||
public $nom; // Name of group
|
public $nom;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string name
|
||||||
|
*/
|
||||||
|
public $name; // Name of group
|
||||||
|
|
||||||
public $globalgroup; // Global group
|
public $globalgroup; // Global group
|
||||||
|
|
||||||
public $datec; // Creation date of group
|
public $datec; // Creation date of group
|
||||||
|
|
||||||
public $datem; // Modification date of group
|
public $datem; // Modification date of group
|
||||||
|
|
||||||
public $note; // Description
|
public $note; // Description
|
||||||
|
|
||||||
public $members=array(); // Array of users
|
public $members=array(); // Array of users
|
||||||
|
|
||||||
public $nb_rights; // Number of rights granted to the user
|
public $nb_rights; // Number of rights granted to the user
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user