Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::getPluginDefinition()
  2. 9 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::getPluginDefinition()

Gets the definition of the plugin implementation.

Return value

\Drupal\Component\Plugin\Definition\PluginDefinitionInterface|array The plugin definition, as returned by the discovery object used by the plugin manager.

Overrides PluginInspectionInterface::getPluginDefinition

20 calls to PluginBase::getPluginDefinition()
Alignment::buildConfigurationForm in core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Alignment.php
Form for choosing which alignment types are available.
Alignment::getElementsSubset in core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Alignment.php
Returns a configured subset of the elements supported by this plugin.
EntityActionBase::calculateDependencies in core/lib/Drupal/Core/Action/Plugin/Action/EntityActionBase.php
Calculates dependencies for the configured plugin.
Heading::buildConfigurationForm in core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Heading.php
Form for choosing which heading tags are available.
Heading::enabledHeadingsToTags in core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/Heading.php
Returns an array of enabled tags based on the enabled headings.

... See full list

2 methods override PluginBase::getPluginDefinition()
Migration::getPluginDefinition in core/modules/migrate/src/Plugin/Migration.php
Gets the definition of the plugin implementation.
Test::getPluginDefinition in core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php
Gets the definition of the plugin implementation.

File

core/lib/Drupal/Component/Plugin/PluginBase.php, line 92

Class

PluginBase
Base class for plugins wishing to support metadata inspection.

Namespace

Drupal\Component\Plugin

Code

public function getPluginDefinition() {
  return $this->pluginDefinition;
}