public function PluginDefinition::getClass in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/Definition/PluginDefinition.php \Drupal\Component\Plugin\Definition\PluginDefinition::getClass()
- 10 core/lib/Drupal/Component/Plugin/Definition/PluginDefinition.php \Drupal\Component\Plugin\Definition\PluginDefinition::getClass()
Gets the class.
Return value
string A fully qualified class name.
Overrides PluginDefinitionInterface::getClass
1 call to PluginDefinition::getClass()
- EntityType::entityClassImplements in core/
lib/ Drupal/ Core/ Entity/ EntityType.php - Indicates if the entity type class implements the given interface.
File
- core/
lib/ Drupal/ Component/ Plugin/ Definition/ PluginDefinition.php, line 49
Class
- PluginDefinition
- Provides object-based plugin definitions.
Namespace
Drupal\Component\Plugin\DefinitionCode
public function getClass() {
return $this->class;
}