public function DefaultsTestPluginManager::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/tests/modules/plugin_test/src/Plugin/DefaultsTestPluginManager.php \Drupal\plugin_test\Plugin\DefaultsTestPluginManager::__construct()
Constructs a new DefaultsTestPluginManager instance.
Parameters
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
Overrides DefaultPluginManager::__construct
File
- core/
modules/ system/ tests/ modules/ plugin_test/ src/ Plugin/ DefaultsTestPluginManager.php, line 26 - Contains \Drupal\plugin_test\Plugin\DefaultsTestPluginManager.
Class
- DefaultsTestPluginManager
- Defines a plugin manager used by Plugin API unit tests.
Namespace
Drupal\plugin_test\PluginCode
public function __construct(ModuleHandlerInterface $module_handler) {
// Create the object that can be used to return definitions for all the
// plugins available for this type. Most real plugin managers use a richer
// discovery implementation, but StaticDiscovery lets us add some simple
// mock plugins for unit testing.
$this->discovery = new StaticDiscovery();
$this->factory = new DefaultFactory($this, 'Drupal\\Component\\Plugin\\PluginInspectionInterface');
$this->moduleHandler = $module_handler;
// Specify default values.
$this->defaults = array(
'metadata' => array(
'default' => TRUE,
),
);
// Add a plugin with a custom value.
$this->discovery
->setDefinition('test_block1', array(
'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\mock_block\\MockTestBlock',
'metadata' => array(
'custom' => TRUE,
),
));
// Add a plugin that overrides the default value.
$this->discovery
->setDefinition('test_block2', array(
'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\mock_block\\MockTestBlock',
'metadata' => array(
'custom' => TRUE,
'default' => FALSE,
),
));
}