public static function MenuBlock::create in Colossal Menu 2.x
Same name in this branch
- 2.x src/Plugin/Derivative/MenuBlock.php \Drupal\colossal_menu\Plugin\Derivative\MenuBlock::create()
- 2.x src/Plugin/Block/MenuBlock.php \Drupal\colossal_menu\Plugin\Block\MenuBlock::create()
Same name and namespace in other branches
- 8 src/Plugin/Derivative/MenuBlock.php \Drupal\colossal_menu\Plugin\Derivative\MenuBlock::create()
Creates a new class instance.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the fetcher.
string $base_plugin_id: The base plugin ID for the plugin ID.
Return value
static Returns an instance of this fetcher.
Overrides SystemMenuBlock::create
File
- src/
Plugin/ Derivative/ MenuBlock.php, line 18
Class
- MenuBlock
- Provides block plugin definitions for custom menus.
Namespace
Drupal\colossal_menu\Plugin\DerivativeCode
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity_type.manager')
->getStorage('colossal_menu'));
}