diff --git a/drupal/sites/all/features/boinc_standard/boinc_standard.features.user_role.inc b/drupal/sites/all/features/boinc_standard/boinc_standard.features.user_role.inc new file mode 100644 index 0000000000..347aa5fabd --- /dev/null +++ b/drupal/sites/all/features/boinc_standard/boinc_standard.features.user_role.inc @@ -0,0 +1,45 @@ + 'administrator', + ); + + // Exported role: anonymous user + $roles['anonymous user'] = array( + 'name' => 'anonymous user', + ); + + // Exported role: authenticated user + $roles['authenticated user'] = array( + 'name' => 'authenticated user', + ); + + // Exported role: community member + $roles['community member'] = array( + 'name' => 'community member', + ); + + // Exported role: content editor + $roles['content editor'] = array( + 'name' => 'content editor', + ); + + // Exported role: moderator + $roles['moderator'] = array( + 'name' => 'moderator', + ); + + // Exported role: verified contributor + $roles['verified contributor'] = array( + 'name' => 'verified contributor', + ); + + return $roles; +}