public function PluginBase::getPluginId

Returns the plugin_id of the plugin instance.

Return value

string The plugin_id of the plugin instance.

Overrides PluginInspectionInterface::getPluginId

21 calls to PluginBase::getPluginId()
AggregatorCategoryBlock::build in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php
Builds and returns the renderable array for this block plugin.
AggregatorFeedBlock::build in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php
Builds and returns the renderable array for this block plugin.
BlockPluginUI::access in drupal/core/modules/block/lib/Drupal/block/Plugin/PluginUI/BlockPluginUI.php
Overrides \Drupal\system\Plugin\PluginUIBase::access().
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.

... See full list

File

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

Class

PluginBase
Base class for plugins wishing to support metadata inspection.

Namespace

Drupal\Component\Plugin

Code

public function getPluginId() {
  return $this->pluginId;
}