public static function ScheduledTransitionsLocalTasks::create in Scheduled Transitions 8
Same name and namespace in other branches
- 2.x src/Plugin/Derivative/ScheduledTransitionsLocalTasks.php \Drupal\scheduled_transitions\Plugin\Derivative\ScheduledTransitionsLocalTasks::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/ ScheduledTransitionsLocalTasks.php, line 52
Class
- ScheduledTransitionsLocalTasks
- Scheduled transitions tab for entities.
Namespace
Drupal\scheduled_transitions\Plugin\DerivativeCode
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($base_plugin_id, $container
->get('entity_type.manager'));
}