doc comment adherent class
This commit is contained in:
parent
070b1d04c9
commit
ab02cb3cde
@ -59,6 +59,9 @@ class Adherent extends CommonObject
|
|||||||
|
|
||||||
public $mesgs;
|
public $mesgs;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string login of member
|
||||||
|
*/
|
||||||
public $login;
|
public $login;
|
||||||
|
|
||||||
//! Clear password in memory
|
//! Clear password in memory
|
||||||
@ -68,29 +71,70 @@ class Adherent extends CommonObject
|
|||||||
//! Encrypted password in database (always defined)
|
//! Encrypted password in database (always defined)
|
||||||
public $pass_indatabase_crypted;
|
public $pass_indatabase_crypted;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string company name
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
public $societe;
|
public $societe;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Societe $company {@type Societe}
|
* @var string company name
|
||||||
*/
|
*/
|
||||||
public $company;
|
public $company;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var int Thirdparty ID
|
||||||
|
*/
|
||||||
|
public $fk_soc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string Address
|
* @var string Address
|
||||||
*/
|
*/
|
||||||
public $address;
|
public $address;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string zipcode
|
||||||
|
*/
|
||||||
public $zip;
|
public $zip;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string town
|
||||||
|
*/
|
||||||
public $town;
|
public $town;
|
||||||
|
|
||||||
public $state_id; // Id of department
|
/**
|
||||||
public $state_code; // Code of department
|
* @var int Id of state
|
||||||
public $state; // Label of department
|
*/
|
||||||
|
public $state_id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string Code of state
|
||||||
|
*/
|
||||||
|
public $state_code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string Label of state
|
||||||
|
*/
|
||||||
|
public $state;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string email
|
||||||
|
*/
|
||||||
public $email;
|
public $email;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string skype account
|
||||||
|
*/
|
||||||
public $skype;
|
public $skype;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string twitter account
|
||||||
|
*/
|
||||||
public $twitter;
|
public $twitter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string facebook account
|
||||||
|
*/
|
||||||
public $facebook;
|
public $facebook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -120,7 +164,11 @@ class Adherent extends CommonObject
|
|||||||
|
|
||||||
public $morphy;
|
public $morphy;
|
||||||
public $public;
|
public $public;
|
||||||
public $statut; // -1:brouillon, 0:resilie, >=1:valide,paye
|
|
||||||
|
// -1:brouillon, 0:resilie, >=1:valide,paye
|
||||||
|
// def in common object
|
||||||
|
//public $statut;
|
||||||
|
|
||||||
public $photo;
|
public $photo;
|
||||||
|
|
||||||
public $datec;
|
public $datec;
|
||||||
@ -129,21 +177,20 @@ class Adherent extends CommonObject
|
|||||||
|
|
||||||
public $birth;
|
public $birth;
|
||||||
|
|
||||||
public $note_public;
|
/**
|
||||||
public $note_private;
|
* @var int id type member
|
||||||
|
*/
|
||||||
|
public $typeid;
|
||||||
|
|
||||||
public $typeid; // Id type adherent
|
/**
|
||||||
public $type; // Libelle type adherent
|
* @var string label type member
|
||||||
|
*/
|
||||||
|
public $type;
|
||||||
public $need_subscription;
|
public $need_subscription;
|
||||||
|
|
||||||
public $user_id;
|
public $user_id;
|
||||||
public $user_login;
|
public $user_login;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var int Thirdparty ID
|
|
||||||
*/
|
|
||||||
public $fk_soc;
|
|
||||||
|
|
||||||
public $datefin; // From member table
|
public $datefin; // From member table
|
||||||
|
|
||||||
// Fields loaded by fetch_subscriptions()
|
// Fields loaded by fetch_subscriptions()
|
||||||
@ -155,7 +202,10 @@ class Adherent extends CommonObject
|
|||||||
public $last_subscription_amount;
|
public $last_subscription_amount;
|
||||||
public $subscriptions=array();
|
public $subscriptions=array();
|
||||||
|
|
||||||
public $oldcopy; // To contains a clone of this when we need to save old properties of object
|
/**
|
||||||
|
* @var Adherent To contains a clone of this when we need to save old properties of object
|
||||||
|
*/
|
||||||
|
public $oldcopy;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int Entity
|
* @var int Entity
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user