You are here

debut.features.user_role.inc in Debut 6

File

debut.features.user_role.inc
View source
<?php

/**
 * Implementation of hook_user_default_roles().
 */
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;
}

Functions

Namesort descending Description
debut_user_default_roles Implementation of hook_user_default_roles().