materio-base-legacy/sites/all/modules/features/showroom/showroom.features.user_role.inc
Bachir Soussi Chiadmi 7abf64be00 Showroom feature
2016-11-06 19:40:18 +01:00

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;
}