You are here

public function ShortcutSetStorage::deleteAssignedShortcutSets in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/shortcut/src/ShortcutSetStorage.php \Drupal\shortcut\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 79

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();
}