function _social_font_set_permissions in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.2 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.3 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.4 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.5 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.6 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.7 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 8.8 modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 10.3.x modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 10.0.x modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 10.1.x modules/custom/social_font/social_font.install \_social_font_set_permissions()
 - 10.2.x modules/custom/social_font/social_font.install \_social_font_set_permissions()
 
Function to set permissions.
1 call to _social_font_set_permissions()
- social_font_install in modules/
custom/ social_font/ social_font.install  - The social_font install file.
 
File
- modules/
custom/ social_font/ social_font.install, line 32  - Contains social_font.install.
 
Code
function _social_font_set_permissions() {
  $roles = Role::loadMultiple();
  /** @var \Drupal\user\Entity\Role $role */
  foreach ($roles as $role) {
    if ($role
      ->id() === 'administrator') {
      continue;
    }
    $permissions = _social_font_get_permissions($role
      ->id());
    user_role_grant_permissions($role
      ->id(), $permissions);
  }
}