public static function LocalActions::create in RNG - Events and Registrations 8
Same name and namespace in other branches
- 8.2 src/Plugin/Derivative/LocalActions.php \Drupal\rng\Plugin\Derivative\LocalActions::create()
- 3.x src/Plugin/Derivative/LocalActions.php \Drupal\rng\Plugin\Derivative\LocalActions::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
- src/
Plugin/ Derivative/ LocalActions.php, line 54
Class
- LocalActions
- Provides dynamic local actions for RNG.
Namespace
Drupal\rng\Plugin\DerivativeCode
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container
->get('entity.manager'), $container
->get('router.route_provider'), $container
->get('rng.event_manager'));
}