You are here

public function ProtectionRule::postSave in User protect 8

Acts on a saved entity before the insert or update hook is invoked.

Used after the entity is saved, but before invoking the insert or update hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

bool $update: TRUE if the entity has been updated, or FALSE if it has been inserted.

Overrides EntityBase::postSave

File

src/Entity/ProtectionRule.php, line 298

Class

ProtectionRule
Defines the Protection rule entity.

Namespace

Drupal\userprotect\Entity

Code

public function postSave(EntityStorageInterface $storage_controller, $update = TRUE) {
  parent::postSave($storage_controller, $update);

  // Set bypass permissions.
  $roles = $this
    ->getBypassRoles();
  $permission = $this
    ->getPermissionName();
  if ($roles && $permission) {
    foreach (user_roles() as $rid => $name) {
      $enabled = in_array($rid, $roles, TRUE);
      user_role_change_permissions($rid, [
        $permission => $enabled,
      ]);
    }
  }
}