public function PluginBase::getPluginDefinition

Returns the definition of the plugin implementation.

Return value

array The plugin definition, as returned by the discovery object used by the plugin manager.

Overrides PluginInspectionInterface::getPluginDefinition

29 calls to PluginBase::getPluginDefinition()
BlockBase::form in drupal/core/modules/block/lib/Drupal/block/BlockBase.php
Implements \Drupal\block\BlockPluginInterface::form().
BlockPluginUI::allPluginsUrl in drupal/core/modules/block/lib/Drupal/block/Plugin/PluginUI/BlockPluginUI.php
Provides an "all" style link to reset the facets.
BlockPluginUI::facetLink in drupal/core/modules/block/lib/Drupal/block/Plugin/PluginUI/BlockPluginUI.php
Creates a facet link for a given facet of a display plugin.
BlockPluginUI::form in drupal/core/modules/block/lib/Drupal/block/Plugin/PluginUI/BlockPluginUI.php
Overrides \Drupal\system\Plugin\PluginUIBase::form().
BlockPluginUI::row in drupal/core/modules/block/lib/Drupal/block/Plugin/PluginUI/BlockPluginUI.php
Overrides \Drupal\system\Plugin\PluginUIBase::row().

... See full list

File

drupal/core/lib/Drupal/Component/Plugin/PluginBase.php, line 61
Definition of Drupal\Component\Plugin\PluginBase

Class

PluginBase
Base class for plugins wishing to support metadata inspection.

Namespace

Drupal\Component\Plugin

Code

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