mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
Property classes and mysql-schema
This commit is contained in:
parent
103c6efb85
commit
98cc5c0fe6
5 changed files with 353 additions and 14 deletions
|
|
@ -0,0 +1,38 @@
|
|||
<?php
|
||||
|
||||
namespace RainLoop\Providers\PersonalAddressBook\Enumerations;
|
||||
|
||||
class PropertyType
|
||||
{
|
||||
const UNKNOWN = 0;
|
||||
|
||||
const FULLNAME = 10;
|
||||
|
||||
const NAME = 15;
|
||||
const SURNAME = 16;
|
||||
const MIDDLENAME = 17;
|
||||
const NICK = 18;
|
||||
|
||||
const EMAIl_PERSONAL = 30;
|
||||
const EMAIl_BUSSINES = 31;
|
||||
const EMAIl_OTHER = 32;
|
||||
|
||||
const PHONE_PERSONAL = 50;
|
||||
const PHONE_BUSSINES = 51;
|
||||
const PHONE_OTHER = 52;
|
||||
|
||||
const MOBILE_PERSONAL = 60;
|
||||
const MOBILE_BUSSINES = 61;
|
||||
const MOBILE_OTHER = 62;
|
||||
|
||||
const FAX_BUSSINES = 70;
|
||||
const FAX_OTHER = 71;
|
||||
|
||||
const FACEBOOK = 90;
|
||||
const SKYPE = 91;
|
||||
const GITHUB = 92;
|
||||
|
||||
const DESCRIPTION = 110;
|
||||
|
||||
const CUSTOM = 250;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue