mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +03:00
PdoAbstract class
MySQL pab driver implementation (part 2)
This commit is contained in:
parent
b92f26e88b
commit
c29be81a65
6 changed files with 462 additions and 53 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue