function ShortcutSetStorage::getAssignedToUser
Same name in other branches
- 9 core/modules/shortcut/src/ShortcutSetStorage.php \Drupal\shortcut\ShortcutSetStorage::getAssignedToUser()
- 10 core/modules/shortcut/src/ShortcutSetStorage.php \Drupal\shortcut\ShortcutSetStorage::getAssignedToUser()
- 11.x core/modules/shortcut/src/ShortcutSetStorage.php \Drupal\shortcut\ShortcutSetStorage::getAssignedToUser()
Overrides ShortcutSetStorageInterface::getAssignedToUser
File
-
core/
modules/ shortcut/ src/ ShortcutSetStorage.php, line 111
Class
- ShortcutSetStorage
- Defines a storage for shortcut_set entities.
Namespace
Drupal\shortcutCode
public function getAssignedToUser($account) {
$query = $this->connection
->select('shortcut_set_users', 'ssu');
$query->fields('ssu', [
'set_name',
]);
$query->condition('ssu.uid', $account->id());
return $query->execute()
->fetchField();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.