You are here

public function PluginBase::getBaseId in Drupal 8

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

Gets the base_plugin_id of the plugin instance.

Return value

string The base_plugin_id of the plugin instance.

Overrides DerivativeInspectionInterface::getBaseId

File

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

Class

PluginBase
Base class for plugins wishing to support metadata inspection.

Namespace

Drupal\Component\Plugin

Code

public function getBaseId() {
  $plugin_id = $this
    ->getPluginId();
  if (strpos($plugin_id, static::DERIVATIVE_SEPARATOR)) {
    list($plugin_id) = explode(static::DERIVATIVE_SEPARATOR, $plugin_id, 2);
  }
  return $plugin_id;
}