definitions
This commit is contained in:
parent
3e11476810
commit
9f3c54e5a5
@ -98,6 +98,17 @@ class Contact extends CommonObject
|
|||||||
|
|
||||||
public $code;
|
public $code;
|
||||||
public $email;
|
public $email;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array array of socialnetworks
|
||||||
|
*/
|
||||||
|
public $socialnetworks;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skype username
|
||||||
|
* @var string
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
public $skype;
|
public $skype;
|
||||||
public $photo;
|
public $photo;
|
||||||
public $jabberid;
|
public $jabberid;
|
||||||
@ -122,6 +133,10 @@ class Contact extends CommonObject
|
|||||||
// END MODULEBUILDER PROPERTIES
|
// END MODULEBUILDER PROPERTIES
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Old copy
|
||||||
|
* @var Contact
|
||||||
|
*/
|
||||||
public $oldcopy; // To contains a clone of this when we need to save old properties of object
|
public $oldcopy; // To contains a clone of this when we need to save old properties of object
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -197,24 +197,35 @@ class Societe extends CommonObject
|
|||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $email;
|
public $email;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array array of socialnetworks
|
||||||
|
*/
|
||||||
|
public $socialnetworks;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skype username
|
* Skype username
|
||||||
* @var string
|
* @var string
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $skype;
|
public $skype;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Twitter username
|
* Twitter username
|
||||||
* @var string
|
* @var string
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $twitter;
|
public $twitter;
|
||||||
/**
|
/**
|
||||||
* Facebook username
|
* Facebook username
|
||||||
* @var string
|
* @var string
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $facebook;
|
public $facebook;
|
||||||
/**
|
/**
|
||||||
* LinkedIn username
|
* LinkedIn username
|
||||||
* @var string
|
* @var string
|
||||||
|
* @deprecated
|
||||||
*/
|
*/
|
||||||
public $linkedin;
|
public $linkedin;
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -72,9 +72,35 @@ class User extends CommonObject
|
|||||||
public $email;
|
public $email;
|
||||||
public $personal_email;
|
public $personal_email;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array array of socialnetworks
|
||||||
|
*/
|
||||||
|
public $socialnetworks;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skype username
|
||||||
|
* @var string
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
public $skype;
|
public $skype;
|
||||||
|
/**
|
||||||
|
* Twitter username
|
||||||
|
* @var string
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
public $twitter;
|
public $twitter;
|
||||||
|
/**
|
||||||
|
* Facebook username
|
||||||
|
* @var string
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
public $facebook;
|
public $facebook;
|
||||||
|
/**
|
||||||
|
* Linkedin username
|
||||||
|
* @var string
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
public $linkedin;
|
public $linkedin;
|
||||||
|
|
||||||
public $job; // job position
|
public $job; // job position
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user