materio_bookmarks.features.user_permission.inc 993 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * @file
  4. * materio_bookmarks.features.user_permission.inc
  5. */
  6. /**
  7. * Implements hook_user_default_permissions().
  8. */
  9. function materio_bookmarks_user_default_permissions() {
  10. $permissions = array();
  11. // Exported permission: 'flag bookmarks'.
  12. $permissions['flag bookmarks'] = array(
  13. 'name' => 'flag bookmarks',
  14. 'roles' => array(
  15. 'Student' => 'Student',
  16. 'Utilisateur' => 'Utilisateur',
  17. 'Utilisateur Alpha Tester' => 'Utilisateur Alpha Tester',
  18. 'administrator' => 'administrator',
  19. 'root' => 'root',
  20. ),
  21. 'module' => 'flag',
  22. );
  23. // Exported permission: 'unflag bookmarks'.
  24. $permissions['unflag bookmarks'] = array(
  25. 'name' => 'unflag bookmarks',
  26. 'roles' => array(
  27. 'Student' => 'Student',
  28. 'Utilisateur' => 'Utilisateur',
  29. 'Utilisateur Alpha Tester' => 'Utilisateur Alpha Tester',
  30. 'administrator' => 'administrator',
  31. 'root' => 'root',
  32. ),
  33. 'module' => 'flag',
  34. );
  35. return $permissions;
  36. }