function ShortcutSet::getShortcuts
Same name in other branches
- 8.9.x core/modules/shortcut/src/Entity/ShortcutSet.php \Drupal\shortcut\Entity\ShortcutSet::getShortcuts()
- 10 core/modules/shortcut/src/Entity/ShortcutSet.php \Drupal\shortcut\Entity\ShortcutSet::getShortcuts()
- 11.x core/modules/shortcut/src/Entity/ShortcutSet.php \Drupal\shortcut\Entity\ShortcutSet::getShortcuts()
Overrides ShortcutSetInterface::getShortcuts
1 call to ShortcutSet::getShortcuts()
- ShortcutSet::resetLinkWeights in core/
modules/ shortcut/ src/ Entity/ ShortcutSet.php - Resets the link weights in a shortcut set to match their current order.
File
-
core/
modules/ shortcut/ src/ Entity/ ShortcutSet.php, line 126
Class
- ShortcutSet
- Defines the Shortcut set configuration entity.
Namespace
Drupal\shortcut\EntityCode
public function getShortcuts() {
$shortcuts = \Drupal::entityTypeManager()->getStorage('shortcut')
->loadByProperties([
'shortcut_set' => $this->id(),
]);
uasort($shortcuts, [
'\\Drupal\\shortcut\\Entity\\Shortcut',
'sort',
]);
return $shortcuts;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.