PdoAbstract class

MySQL pab driver implementation (part 2)
This commit is contained in:
RainLoop Team 2013-11-29 03:27:28 +04:00
parent b92f26e88b
commit c29be81a65
6 changed files with 462 additions and 53 deletions

View file

@ -14,20 +14,25 @@ class Contact
*/
public $IdUser;
/**
* @var string
*/
public $DisplayName;
/**
* @var string
*/
public $DisplayEmail;
/**
* @var string
*/
public $DisplayInList;
/**
* @var bool
* @var int
*/
public $IsAuto;
/**
* @var bool
*/
public $IsShare;
public $Type;
/**
* @var bool
@ -47,7 +52,7 @@ class Contact
/**
* @var array
*/
public $Tags;
public $TagsIds;
/**
* @var array
@ -63,12 +68,14 @@ class Contact
{
$this->IdContact = 0;
$this->IdUser = 0;
$this->DisplayName = '';
$this->DisplayEmail = '';
$this->DisplayInList = '';
$this->IsAuto = false;
$this->Type = \RainLoop\Providers\PersonalAddressBook\Enumerations\ContactType::DEFAULT_;
$this->IsShare = false;
$this->CanBeChanged = false;
$this->Changed = \time();
$this->Tags = array();
$this->TagsIds = array();
$this->Properties = array();
}