summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php
diff options
context:
space:
mode:
authorroot2019-02-19 18:53:50 +0100
committerroot2019-02-19 18:53:50 +0100
commit0ad4c0f8196b61699754762aacbaab0223478ab9 (patch)
treede434c4aea8d07ecd01cd3badd48d057d62c2d1b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php
parent[usb-lock-off] Edit rule cleanup and fix of the dropdown boxes. (diff)
parent[statistics] Fix RAM change warning to handle increase too (diff)
downloadslx-admin-usb-lock-off.tar.gz
slx-admin-usb-lock-off.tar.xz
slx-admin-usb-lock-off.zip
Merge branch 'master' into usb-lock-offusb-lock-off
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php187
1 files changed, 187 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php
new file mode 100644
index 00000000..ba657e22
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ElcFolderType.php
@@ -0,0 +1,187 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\ElcFolderType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the type of folder used in a retention policy.
+ *
+ * @package php-ews\Enumeration
+ */
+class ElcFolderType extends Enumeration
+{
+ /**
+ * Indicates that the folder is an all folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const ALL = 'All';
+
+ /**
+ * Indicates that the folder is a calendar folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const CALENDAR = 'Calendar';
+
+ /**
+ * Indicates that the folder is a contacts folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const CONTACTS = 'Contacts';
+
+ /**
+ * Indicates that the folder is a conversation history folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const CONVERSATION_HISTORY = 'ConversationHistory';
+
+ /**
+ * Indicates that the folder is a deleted items folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const DELETED_ITEMS = 'DeletedItems';
+
+ /**
+ * Indicates that the folder is a drafts folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const DRAFTS = 'Drafts';
+
+ /**
+ * Indicates that the folder is an inbox folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const INBOX = 'Inbox';
+
+ /**
+ * Indicates that the folder is a journal folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const JOURNAL = 'Journal';
+
+ /**
+ * Indicates that the folder is a junk email folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const JUNK_EMAIL = 'JunkEmail';
+
+ /**
+ * Indicates that the folder is a managed custom folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const MANAGED_CUSTOM_FOLDER = 'ManagedCustomFolder';
+
+ /**
+ * Indicates that the folder is a non implemented root folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const NON_IMPLEMENTED_ROOT = 'NonIpmRoot';
+
+ /**
+ * Indicates that the folder is a notes folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const NOTES = 'Notes';
+
+ /**
+ * Indicates that the folder is a outbox folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const OUTBOX = 'Outbox';
+
+ /**
+ * Indicates that the folder is a personal folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const PERSONAL = 'Personal';
+
+ /**
+ * Indicates that the folder is a recoverable items folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const RECOVERABLE_ITEMS = 'RecoverableItems';
+
+ /**
+ * Indicates that the folder is an RSS subscription folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const RSS_SUBSCRIPTION = 'RssSubscriptions';
+
+ /**
+ * Indicates that the folder is a sent items folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const SENT_ITEMS = 'SentItems';
+
+ /**
+ * Indicates that the folder is a sync issues folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const SYNC_ISSUES = 'SyncIssues';
+
+ /**
+ * Indicates that the folder is a tasks folder.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const TASKS = 'Tasks';
+}