created showroom feature

This commit is contained in:
Bachir Soussi Chiadmi
2016-10-25 16:05:07 +02:00
parent 598f3e8292
commit 54399b169a
8 changed files with 263 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
/**
* @file
* showroom.features.user_role.inc
*/
/**
* Implements hook_user_default_roles().
*/
function showroom_user_default_roles() {
$roles = array();
// Exported role: Translator CN.
$roles['Translator CN'] = array(
'name' => 'Translator CN',
'weight' => 12,
);
// Exported role: Translator EN.
$roles['Translator EN'] = array(
'name' => 'Translator EN',
'weight' => 10,
);
// Exported role: Translator FR.
$roles['Translator FR'] = array(
'name' => 'Translator FR',
'weight' => 11,
);
return $roles;
}