-
Notifications
You must be signed in to change notification settings - Fork 0
/
fjvu_frontpage_slides.features.user_permission.inc
59 lines (52 loc) · 1.52 KB
/
fjvu_frontpage_slides.features.user_permission.inc
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
<?php
/**
* @file
* fjvu_frontpage_slides.features.user_permission.inc
*/
/**
* Implements hook_user_default_permissions().
*/
function fjvu_frontpage_slides_user_default_permissions() {
$permissions = array();
// Exported permission: create frontpage_options content
$permissions['create frontpage_options content'] = array(
'name' => 'create frontpage_options content',
'roles' => array(
0 => 'administrator',
),
'module' => 'node',
);
// Exported permission: delete any frontpage_options content
$permissions['delete any frontpage_options content'] = array(
'name' => 'delete any frontpage_options content',
'roles' => array(
0 => 'administrator',
),
'module' => 'node',
);
// Exported permission: delete own frontpage_options content
$permissions['delete own frontpage_options content'] = array(
'name' => 'delete own frontpage_options content',
'roles' => array(
0 => 'administrator',
),
'module' => 'node',
);
// Exported permission: edit any frontpage_options content
$permissions['edit any frontpage_options content'] = array(
'name' => 'edit any frontpage_options content',
'roles' => array(
0 => 'administrator',
),
'module' => 'node',
);
// Exported permission: edit own frontpage_options content
$permissions['edit own frontpage_options content'] = array(
'name' => 'edit own frontpage_options content',
'roles' => array(
0 => 'administrator',
),
'module' => 'node',
);
return $permissions;
}