showroom.features.user_role.inc 319 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * showroom.features.user_role.inc
  5. */
  6. /**
  7. * Implements hook_user_default_roles().
  8. */
  9. function showroom_user_default_roles() {
  10. $roles = array();
  11. // Exported role: Admin showroom.
  12. $roles['Admin showroom'] = array(
  13. 'name' => 'Admin showroom',
  14. 'weight' => 10,
  15. );
  16. return $roles;
  17. }