|
9 | 9 | 'adminlist' => array(
|
10 | 10 | //array('allow', 'equals', 'mail', '[email protected]'),
|
11 | 11 | //array('allow', 'has', 'groups', 'admin'),
|
12 |
| - /* The default action is to deny access. */ |
| 12 | + // The default action is to deny access. |
13 | 13 | ),
|
14 | 14 |
|
15 | 15 | 'example-simple' => array(
|
16 | 16 | array( 'allow', 'equals', 'mail', '[email protected]'),
|
17 | 17 | array( 'allow', 'equals', 'mail', '[email protected]'),
|
18 |
| - /* The default action is to deny access. */ |
| 18 | + // The default action is to deny access. |
19 | 19 | ),
|
20 | 20 |
|
21 | 21 | 'example-deny-some' => array(
|
22 | 22 | array( 'deny', 'equals', 'mail', '[email protected]'),
|
23 |
| - array('allow'), /* Allow everybody else. */ |
| 23 | + array('allow'), // Allow everybody else. |
24 | 24 | ),
|
25 | 25 |
|
26 | 26 | 'example-maildomain' => array(
|
27 | 27 | array('allow', 'equals-preg', 'mail', '/@example\.org$/'),
|
28 |
| - /* The default action is to deny access. */ |
| 28 | + // The default action is to deny access. |
29 | 29 | ),
|
30 | 30 |
|
31 | 31 | 'example-allow-employees' => array(
|
32 | 32 | array('allow', 'has', 'eduPersonAffiliation', 'employee'),
|
33 |
| - /* The default action is to deny access. */ |
| 33 | + // The default action is to deny access. |
34 | 34 | ),
|
35 | 35 |
|
36 | 36 | 'example-allow-employees-not-students' => array(
|
37 | 37 | array('deny', 'has', 'eduPersonAffiliation', 'student'),
|
38 | 38 | array('allow', 'has', 'eduPersonAffiliation', 'employee'),
|
39 |
| - /* The default action is to deny access. */ |
| 39 | + // The default action is to deny access. |
40 | 40 | ),
|
41 | 41 |
|
42 | 42 | 'example-deny-student-except-one' => array(
|
|
0 commit comments