public MenuTreeStorage::load($id)
Loads a menu link plugin definition from the storage.
Parameters
string $id: The menu link plugin ID.
Return value
array|false The plugin definition, or FALSE if no definition was found for the ID.
Overrides MenuTreeStorageInterface::load
File
- core/lib/Drupal/Core/Menu/MenuTreeStorage.php, line 710
Class
- MenuTreeStorage
- Provides a menu tree storage using the database.
Namespace
Drupal\Core\Menu
Code
1 2 3 4 5 6 7 | public function load( $id ) { if (isset( $this ->definitions[ $id ])) { return $this ->definitions[ $id ]; } $loaded = $this ->loadMultiple( array ( $id )); return isset( $loaded [ $id ]) ? $loaded [ $id ] : FALSE; } |
Please login to continue.