commited features for showroom release

This commit is contained in:
Bachir Soussi Chiadmi
2016-12-10 18:30:03 +01:00
parent 026a9bc241
commit 138b68ac98
36 changed files with 2694 additions and 969 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* @file
* translations.features.user_role.inc
*/
/**
* Implements hook_user_default_roles().
*/
function translations_user_default_roles() {
$roles = array();
// Exported role: Translator.
$roles['Translator'] = array(
'name' => 'Translator',
'weight' => 9,
);
return $roles;
}