initial commit of starter install drupal 7
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* page.features.user_permission.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_user_default_permissions().
|
||||
*/
|
||||
function page_user_default_permissions() {
|
||||
$permissions = array();
|
||||
|
||||
// Exported permission: 'create page content'.
|
||||
$permissions['create page content'] = array(
|
||||
'name' => 'create page content',
|
||||
'roles' => array(
|
||||
'administrator' => 'administrator',
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'node',
|
||||
);
|
||||
|
||||
// Exported permission: 'delete any page content'.
|
||||
$permissions['delete any page content'] = array(
|
||||
'name' => 'delete any page content',
|
||||
'roles' => array(
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'node',
|
||||
);
|
||||
|
||||
// Exported permission: 'delete own page content'.
|
||||
$permissions['delete own page content'] = array(
|
||||
'name' => 'delete own page content',
|
||||
'roles' => array(
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'node',
|
||||
);
|
||||
|
||||
// Exported permission: 'edit any page content'.
|
||||
$permissions['edit any page content'] = array(
|
||||
'name' => 'edit any page content',
|
||||
'roles' => array(
|
||||
'administrator' => 'administrator',
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'node',
|
||||
);
|
||||
|
||||
// Exported permission: 'edit own page content'.
|
||||
$permissions['edit own page content'] = array(
|
||||
'name' => 'edit own page content',
|
||||
'roles' => array(
|
||||
'root' => 'root',
|
||||
),
|
||||
'module' => 'node',
|
||||
);
|
||||
|
||||
return $permissions;
|
||||
}
|
||||
Reference in New Issue
Block a user