first import

Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
bachy
2013-01-30 18:30:33 +01:00
commit 4caa0c442b
37 changed files with 17007 additions and 0 deletions
@@ -0,0 +1,32 @@
<?php
/**
* @file
* materio_subscriptions.features.user_role.inc
*/
/**
* Implements hook_user_default_roles().
*/
function materio_subscriptions_user_default_roles() {
$roles = array();
// Exported role: Adhérent.
$roles['Adhérent'] = array(
'name' => 'Adhérent',
'weight' => '3',
);
// Exported role: Premium.
$roles['Premium'] = array(
'name' => 'Premium',
'weight' => '4',
);
// Exported role: Utilisateur.
$roles['Utilisateur'] = array(
'name' => 'Utilisateur',
'weight' => '2',
);
return $roles;
}