public function PluginBase::getDerivativeId in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/PluginBase.php \Drupal\Component\Plugin\PluginBase::getDerivativeId()
Gets the derivative_id of the plugin instance.
Return value
string|null The derivative_id of the plugin instance NULL otherwise.
Overrides DerivativeInspectionInterface::getDerivativeId
9 calls to PluginBase::getDerivativeId()
- BlockContentBlock::blockForm in core/
modules/ block_content/ src/ Plugin/ Block/ BlockContentBlock.php - Overrides \Drupal\Core\Block\BlockBase::blockForm().
- BlockContentBlock::build in core/
modules/ block_content/ src/ Plugin/ Block/ BlockContentBlock.php - Builds and returns the renderable array for this block plugin.
- BlockContentBlock::getEntity in core/
modules/ block_content/ src/ Plugin/ Block/ BlockContentBlock.php - Loads the block content entity of the block.
- LanguageBlock::build in core/
modules/ language/ src/ Plugin/ Block/ LanguageBlock.php - Builds and returns the renderable array for this block plugin.
- MenuLinkContent::getUuid in core/
modules/ menu_link_content/ src/ Plugin/ Menu/ MenuLinkContent.php - Returns the unique ID representing the menu link.
File
- core/
lib/ Drupal/ Component/ Plugin/ PluginBase.php, line 84 - Contains \Drupal\Component\Plugin\PluginBase.
Class
- PluginBase
- Base class for plugins wishing to support metadata inspection.
Namespace
Drupal\Component\PluginCode
public function getDerivativeId() {
$plugin_id = $this
->getPluginId();
$derivative_id = NULL;
if (strpos($plugin_id, static::DERIVATIVE_SEPARATOR)) {
list(, $derivative_id) = explode(static::DERIVATIVE_SEPARATOR, $plugin_id, 2);
}
return $derivative_id;
}