protected function AnnotatedClassDiscovery::prepareAnnotationDefinition in Zircon Profile 8.0
Same name in this branch
- 8.0 core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php \Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery::prepareAnnotationDefinition()
- 8.0 core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotatedClassDiscovery.php \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery::prepareAnnotationDefinition()
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotatedClassDiscovery.php \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery::prepareAnnotationDefinition()
Prepares the annotation definition.
Parameters
\Drupal\Component\Annotation\AnnotationInterface $annotation: The annotation derived from the plugin.
string $class: The class used for the plugin.
2 calls to AnnotatedClassDiscovery::prepareAnnotationDefinition()
- AnnotatedClassDiscovery::getDefinitions in core/
lib/ Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Gets the definition of all plugins for this type.
- AnnotatedClassDiscovery::prepareAnnotationDefinition in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Prepares the annotation definition.
1 method overrides AnnotatedClassDiscovery::prepareAnnotationDefinition()
- AnnotatedClassDiscovery::prepareAnnotationDefinition in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Prepares the annotation definition.
File
- core/
lib/ Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php, line 138 - Contains \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery.
Class
- AnnotatedClassDiscovery
- Defines a discovery mechanism to find annotated plugins in PSR-0 namespaces.
Namespace
Drupal\Component\Annotation\Plugin\DiscoveryCode
protected function prepareAnnotationDefinition(AnnotationInterface $annotation, $class) {
$annotation
->setClass($class);
}