function ShortcutSetStorage::deleteAssignedShortcutSets

Delete shortcut sets assigned to users.

Parameters

\Drupal\shortcut\ShortcutSetInterface $entity: Delete the user assigned sets belonging to this shortcut.

Overrides ShortcutSetStorageInterface::deleteAssignedShortcutSets

File

core/modules/shortcut/src/ShortcutSetStorage.php, line 80

Class

ShortcutSetStorage
Defines a storage for shortcut_set entities.

Namespace

Drupal\shortcut

Code

public function deleteAssignedShortcutSets(ShortcutSetInterface $entity) {
  // First, delete any user assignments for this set, so that each of these
  // users will go back to using whatever default set applies.
  $this->connection
    ->delete('shortcut_set_users')
    ->condition('set_name', $entity->id())
    ->execute();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.