add socialnetworks dictionary
This commit is contained in:
parent
e0f17cc71c
commit
dc2ea3cef9
@ -124,23 +124,32 @@ class Adherent extends CommonObject
|
|||||||
*/
|
*/
|
||||||
public $email;
|
public $email;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array array of socialnetworks
|
||||||
|
*/
|
||||||
|
public $socialnetworks;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string skype account
|
* @var string skype account
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $skype;
|
public $skype;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string twitter account
|
* @var string twitter account
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $twitter;
|
public $twitter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string facebook account
|
* @var string facebook account
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $facebook;
|
public $facebook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string linkedin account
|
* @var string linkedin account
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $linkedin;
|
public $linkedin;
|
||||||
|
|
||||||
@ -2440,6 +2449,12 @@ class Adherent extends CommonObject
|
|||||||
$this->twitter = 'twitterpseudo';
|
$this->twitter = 'twitterpseudo';
|
||||||
$this->facebook = 'facebookpseudo';
|
$this->facebook = 'facebookpseudo';
|
||||||
$this->linkedin = 'linkedinpseudo';
|
$this->linkedin = 'linkedinpseudo';
|
||||||
|
$this->socialnetworks = array(
|
||||||
|
'skype' => 'skypepseudo',
|
||||||
|
'twitter' => 'twitterpseudo',
|
||||||
|
'facebook' => 'facebookpseudo',
|
||||||
|
'linkedin' => 'linkedinpseudo',
|
||||||
|
);
|
||||||
$this->phone = '0999999999';
|
$this->phone = '0999999999';
|
||||||
$this->phone_perso = '0999999998';
|
$this->phone_perso = '0999999998';
|
||||||
$this->phone_mobile = '0999999997';
|
$this->phone_mobile = '0999999997';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user