public static function MenuLinkContentDeriver::create in Drupal 10
Same name and namespace in other branches
- 8 core/modules/menu_link_content/src/Plugin/Deriver/MenuLinkContentDeriver.php \Drupal\menu_link_content\Plugin\Deriver\MenuLinkContentDeriver::create()
- 9 core/modules/menu_link_content/src/Plugin/Deriver/MenuLinkContentDeriver.php \Drupal\menu_link_content\Plugin\Deriver\MenuLinkContentDeriver::create()
File
- core/
modules/ menu_link_content/ src/ Plugin/ Deriver/ MenuLinkContentDeriver.php, line 49
Class
- MenuLinkContentDeriver
- Provides a deriver for user entered paths of menu links.
Namespace
Drupal\menu_link_content\Plugin\DeriverCode
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity_type.manager'), $container
->get('plugin.manager.menu.link'));
}