public Shortcut::getWeight()
Returns the weight among shortcuts with the same depth.
Return value
int The shortcut weight.
Overrides ShortcutInterface::getWeight
File
- core/modules/shortcut/src/Entity/Shortcut.php, line 70
Class
- Shortcut
- Defines the shortcut entity class.
Namespace
Drupal\shortcut\Entity
Code
1 2 3 | public function getWeight() { return $this ->get( 'weight' )->value; } |
Please login to continue.