materio_publications.features.user_role.inc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * @file
  4. * materio_publications.features.user_role.inc
  5. */
  6. /**
  7. * Implements hook_user_default_roles().
  8. */
  9. function materio_publications_user_default_roles() {
  10. $roles = array();
  11. // Exported role: Contact opérationnel.
  12. $roles['Contact opérationnel'] = array(
  13. 'name' => 'Contact opérationnel',
  14. 'weight' => 7,
  15. );
  16. // Exported role: Student.
  17. $roles['Student'] = array(
  18. 'name' => 'Student',
  19. 'weight' => 4,
  20. );
  21. // Exported role: Unverified.
  22. $roles['Unverified'] = array(
  23. 'name' => 'Unverified',
  24. 'weight' => 2,
  25. );
  26. // Exported role: Utilisateur Alpha Tester.
  27. $roles['Utilisateur Alpha Tester'] = array(
  28. 'name' => 'Utilisateur Alpha Tester',
  29. 'weight' => 4,
  30. );
  31. // Exported role: administrator.
  32. $roles['administrator'] = array(
  33. 'name' => 'administrator',
  34. 'weight' => 8,
  35. );
  36. // Exported role: root.
  37. $roles['root'] = array(
  38. 'name' => 'root',
  39. 'weight' => 9,
  40. );
  41. // Exported role: utilisateur anonyme.
  42. $roles['utilisateur anonyme'] = array(
  43. 'name' => 'utilisateur anonyme',
  44. 'weight' => 0,
  45. );
  46. // Exported role: utilisateur authentifié.
  47. $roles['utilisateur authentifié'] = array(
  48. 'name' => 'utilisateur authentifié',
  49. 'weight' => 1,
  50. );
  51. return $roles;
  52. }