class TestConfigEntityWithPluginCollections

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityBaseUnitTest.php \Drupal\Tests\Core\Config\Entity\TestConfigEntityWithPluginCollections
  2. 10 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityBaseUnitTest.php \Drupal\Tests\Core\Config\Entity\TestConfigEntityWithPluginCollections
  3. 11.x core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityBaseUnitTest.php \Drupal\Tests\Core\Config\Entity\TestConfigEntityWithPluginCollections

Hierarchy

Expanded class hierarchy of TestConfigEntityWithPluginCollections

File

core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityBaseUnitTest.php, line 645

Namespace

Drupal\Tests\Core\Config\Entity
View source
class TestConfigEntityWithPluginCollections extends ConfigEntityBaseWithPluginCollections {
    protected $pluginCollection;
    protected $pluginManager;
    public function setPluginManager(PluginManagerInterface $plugin_manager) {
        $this->pluginManager = $plugin_manager;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getPluginCollections() {
        if (!$this->pluginCollection) {
            $this->pluginCollection = new DefaultLazyPluginCollection($this->pluginManager, [
                'the_instance_id' => [
                    'id' => 'the_instance_id',
                ],
            ]);
        }
        return [
            'the_plugin_collection_config' => $this->pluginCollection,
        ];
    }

}

Members


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.