public function LayoutDefinition::getDeriver in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Layout/LayoutDefinition.php \Drupal\Core\Layout\LayoutDefinition::getDeriver()
Gets the name of the deriver of this plugin definition, if it exists.
Return value
string|null Either the deriver class name, or NULL if the plugin is not derived.
Overrides DerivablePluginDefinitionInterface::getDeriver
File
- core/
lib/ Drupal/ Core/ Layout/ LayoutDefinition.php, line 536
Class
- LayoutDefinition
- Provides an implementation of a layout definition and its metadata.
Namespace
Drupal\Core\LayoutCode
public function getDeriver() {
return $this->deriver;
}