Merge pull request #5885 from GPCsolutions/develop-members-types
Add deprecated property explicitly
This commit is contained in:
commit
024c0501bf
@ -33,17 +33,28 @@ require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
|
|||||||
*/
|
*/
|
||||||
class AdherentType extends CommonObject
|
class AdherentType extends CommonObject
|
||||||
{
|
{
|
||||||
public $table_element = 'adherent_type';
|
public $table_element = 'adherent_type';
|
||||||
public $element = 'adherent_type';
|
public $element = 'adherent_type';
|
||||||
|
|
||||||
var $id;
|
/** @var string Label */
|
||||||
var $ref;
|
public $libelle;
|
||||||
var $libelle;
|
/**
|
||||||
var $subscription; // Subscription required
|
* @var bool
|
||||||
var $note;
|
* @deprecated Use subscription
|
||||||
var $vote; // Can vote
|
* @see subscription
|
||||||
var $mail_valid; // mail sent during validation
|
*/
|
||||||
var $statut;
|
public $cotisation;
|
||||||
|
/**
|
||||||
|
* @var bool Subsription required
|
||||||
|
* @since 5.0
|
||||||
|
*/
|
||||||
|
public $subscription;
|
||||||
|
/** @var string Public note */
|
||||||
|
public $note;
|
||||||
|
/** @var bool Can vote*/
|
||||||
|
public $vote;
|
||||||
|
/** @var bool Email sent during validation */
|
||||||
|
public $mail_valid;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user