enterprise_base.features.user_role.inc in Enterprise Base 7
File
enterprise_base.features.user_role.incView source
<?php
/**
* @file
* enterprise_base.features.user_role.inc
*/
/**
* Implements hook_user_default_roles().
*/
/*
function enterprise_base_user_default_roles() {
$roles = array();
// Exported role: copywriter
$roles['copywriter'] = array(
'name' => 'copywriter',
'weight' => '2',
);
// Exported role: editor
$roles['editor'] = array(
'name' => 'editor',
'weight' => '3',
);
return $roles;
}
*/