summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php
diff options
context:
space:
mode:
authorSimon Rettberg2018-04-05 15:08:52 +0200
committerSimon Rettberg2018-04-05 15:08:52 +0200
commitb409fbb72591b43df7431e83e30d6c00ea633f21 (patch)
treee16963094d5189c24220bf8331a054e8be33325b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php
parent[locationinfo] Fix color of seat counter not updating properly (diff)
downloadslx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.gz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.xz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.zip
[locationinfo] Add exchange backend
Closes #3170
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php106
1 files changed, 106 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php
new file mode 100644
index 00000000..15dafbf9
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DictionaryURIType.php
@@ -0,0 +1,106 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\DictionaryURIType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Identifies the dictionary that contains the member to return.
+ *
+ * @package php-ews\Enumeration
+ */
+class DictionaryURIType extends Enumeration
+{
+ /**
+ * Represents the e-mail address of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_EMAIL_ADDRESS = 'contacts:EmailAddress';
+
+ /**
+ * Represents the instant messaging address of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_IM_ADDRESS = 'contacts:ImAddress';
+
+ /**
+ * Represents the phone number of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_PHONE_NUMBER = 'contacts:PhoneNumber';
+
+ /**
+ * Represents the city of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_PHYSICAL_ADDRESS_CITY = 'contacts:PhysicalAddress:City';
+
+ /**
+ * Represents the country of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_PHYSICAL_ADDRESS_COUNTRY = 'contacts:PhysicalAddress:Country';
+
+ /**
+ * Represents the postal code of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_PHYSICAL_ADDRESS_POSTAL_CODE = 'contacts:PhysicalAddress:PostalCode';
+
+ /**
+ * Represents the state of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_PHYSICAL_ADDRESS_STATE = 'contacts:PhysicalAddress:State';
+
+ /**
+ * Represents the street address of a contact.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONTACTS_PHYSICAL_ADDRESS_STREET = 'contacts:PhysicalAddress:Street';
+
+ /**
+ * Represents a member of a distribution list.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const DISTRIBUTION_LIST_MEMBERS_MEMBER = 'distributionlist:Members:Member';
+
+ /**
+ * Represents the message header of an item.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const ITEM_INTERNET_MESSAGE_HEADER = 'item:InternetMessageHeader';
+}