blob: 1b7c5f588c8e9d12470d4441e94bcf70289f19f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* @file
* calendario_feature.features.user_role.inc
*/
/**
* Implements hook_user_default_roles().
*/
function calendario_feature_user_default_roles() {
$roles = array();
// Exported role: administrator.
$roles['administrator'] = array(
'name' => 'administrator',
'weight' => '2',
);
return $roles;
}
|