fgcf.features.user_role.inc 276 B

123456789101112131415
  1. <?php
  2. /**
  3. * Implementation of hook_user_default_roles().
  4. */
  5. function fgcf_user_default_roles() {
  6. $roles = array();
  7. // Exported role: FGCF Editeur formations
  8. $roles['FGCF Editeur formations'] = array(
  9. 'name' => 'FGCF Editeur formations',
  10. );
  11. return $roles;
  12. }