8ac59801be
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
21 lines
324 B
PHP
21 lines
324 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_misc.features.user_role.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_user_default_roles().
|
|
*/
|
|
function commons_misc_user_default_roles() {
|
|
$roles = array();
|
|
|
|
// Exported role: administrator.
|
|
$roles['administrator'] = array(
|
|
'name' => 'administrator',
|
|
'weight' => 10,
|
|
);
|
|
|
|
return $roles;
|
|
}
|