public static function Section::create in Workbench Access 8
Same name in this branch
- 8 src/Plugin/views/filter/Section.php \Drupal\workbench_access\Plugin\views\filter\Section::create()
- 8 src/Plugin/views/field/Section.php \Drupal\workbench_access\Plugin\views\field\Section::create()
Creates an instance of the plugin.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin ID for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
Return value
static Returns an instance of this plugin.
Overrides PluginBase::create
2 calls to Section::create()
- ConfigDependenciesTest::testViewsFieldDependencies in tests/
src/ Kernel/ ConfigDependenciesTest.php - Tests views field dependencies.
- UserSection::create in src/
Plugin/ views/ field/ UserSection.php - Creates an instance of the plugin.
1 method overrides Section::create()
- UserSection::create in src/
Plugin/ views/ field/ UserSection.php - Creates an instance of the plugin.
File
- src/
Plugin/ views/ field/ Section.php, line 32
Class
- Section
- Field handler to present the section assigned to the node.
Namespace
Drupal\workbench_access\Plugin\views\fieldCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
/** @var self $instance */
$instance = parent::create($container, $configuration, $plugin_id, $plugin_definition);
return $instance
->setScheme($container
->get('entity_type.manager')
->getStorage('access_scheme')
->load($configuration['scheme']));
}