public static function MenuLinksTask::create in Entity Extra Field 8
Same name and namespace in other branches
- 2.0.x modules/entity_extra_field_ui/src/Plugin/Derivative/MenuLinksTask.php \Drupal\entity_extra_field_ui\Plugin\Derivative\MenuLinksTask::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 ContainerDeriverInterface::create
File
- modules/
entity_extra_field_ui/ src/ Plugin/ Derivative/ MenuLinksTask.php, line 36
Class
- MenuLinksTask
- Define menu links task derivative.
Namespace
Drupal\entity_extra_field_ui\Plugin\DerivativeCode
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity_type.manager'));
}