You are here

enterprise_base.features.user_permission.inc in Enterprise Base 7

File

enterprise_base.features.user_permission.inc
View source
<?php

/**
 * @file
 * enterprise_base.features.user_permission.inc
 */

/**
 * Implements hook_user_default_permissions().
 */

/*
function enterprise_base_user_default_permissions() {
  $permissions = array();

  // Exported permission: access content overview
  $permissions['access content overview'] = array(
    'name' => 'access content overview',
    'roles' => array(
      0 => 'administrator',
      1 => 'copywriter',
      2 => 'editor',
    ),
    'module' => 'node',
  );

  // Exported permission: view the administration theme
  $permissions['view the administration theme'] = array(
    'name' => 'view the administration theme',
    'roles' => array(
      0 => 'administrator',
      1 => 'copywriter',
      2 => 'editor',
    ),
    'module' => 'system',
  );

  return $permissions;
}
*/