You are here

function debut_user_default_roles in Debut 6

Implementation of hook_user_default_roles().

File

./debut.features.user_role.inc, line 6

Code

function debut_user_default_roles() {
  $roles = array();

  // Exported role: contributor
  $roles['contributor'] = array(
    'name' => 'contributor',
  );

  // Exported role: editor
  $roles['editor'] = array(
    'name' => 'editor',
  );
  return $roles;
}