showroom.features.user_role.inc 301 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: Showroom.
  12. $roles['Showroom'] = array(
  13. 'name' => 'Showroom',
  14. 'weight' => 13,
  15. );
  16. return $roles;
  17. }