showroom.features.user_role.inc 570 B

1234567891011121314151617181920212223242526272829303132
  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: Translator CN.
  12. $roles['Translator CN'] = array(
  13. 'name' => 'Translator CN',
  14. 'weight' => 12,
  15. );
  16. // Exported role: Translator EN.
  17. $roles['Translator EN'] = array(
  18. 'name' => 'Translator EN',
  19. 'weight' => 10,
  20. );
  21. // Exported role: Translator FR.
  22. $roles['Translator FR'] = array(
  23. 'name' => 'Translator FR',
  24. 'weight' => 11,
  25. );
  26. return $roles;
  27. }