summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PermissionLevelType.php
blob: 3b17c1903975b4911906c1deaab85444dc620f2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\PermissionLevelType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Represents the permission level that a user has on a folder.
 *
 * @package php-ews\Enumeration
 */
class PermissionLevelType extends Enumeration
{
    /**
     * Indicates that the user can create and read all items in the folder, and
     * edit and delete only items that the user creates.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const AUTHOR = 'Author';

    /**
     * Indicates that the user can create items in the folder.
     *
     * The contents of the folder do not appear.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const CONTRIBUTOR = 'Contributor';

    /**
     * Indicates that the user has custom access permissions on the folder.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const CUSTOM = 'Custom';

    /**
     * Indicates that the user can create, read, edit, and delete all items in
     * the folder.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const EDITOR = 'Editor';

    /**
     * Indicates that the user can create and read all items in the folder, and
     * delete only items that the user creates.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const NON_EDITING_AUTHOR = 'NoneditingAuthor';

    /**
     * Indicates that the user has no permissions on the folder.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const NONE = 'None';

    /**
     * Indicates that the user can create, read, edit, and delete all items in
     * the folder, and create subfolders.
     *
     * The user is both folder owner and folder contact.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const OWNER = 'Owner';

    /**
     * Indicates that the user can create and read all items in the folder,
     * edit and delete only items that the user creates, and create subfolders.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const PUBLISHING_AUTHOR = 'PublishingAuthor';

    /**
     * Indicates that the user can create, read, edit, and delete all items in
     * the folder, and create subfolders.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const PUBLISHING_EDITOR = 'PublishingEditor';

    /**
     * Indicates that the user can read all items in the folder.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const REVIEWER = 'Reviewer';
}