21 lines
301 B
PHP
21 lines
301 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* showroom.features.user_role.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_user_default_roles().
|
|
*/
|
|
function showroom_user_default_roles() {
|
|
$roles = array();
|
|
|
|
// Exported role: Showroom.
|
|
$roles['Showroom'] = array(
|
|
'name' => 'Showroom',
|
|
'weight' => 13,
|
|
);
|
|
|
|
return $roles;
|
|
}
|