public function PluginID::get in Plug 7
Gets the value of an annotation.
Overrides AnnotationInterface::get
File
- lib/
Drupal/ Component/ Annotation/ PluginID.php, line 29 - Contains \Drupal\Component\Annotation\PluginID.
Class
- PluginID
- Defines a Plugin annotation object that just contains an ID.
Namespace
Drupal\Component\AnnotationCode
public function get() {
return array(
'id' => $this->value,
'class' => $this->class,
'provider' => $this->provider,
);
}