class ObjectDefinition
Hierarchy
- class \Drupal\Component\Plugin\Definition\PluginDefinition implements \Drupal\Component\Plugin\Definition\PluginDefinitionInterface
- class \Drupal\Tests\Component\Annotation\Plugin\Discovery\ObjectDefinition extends \Drupal\Component\Plugin\Definition\PluginDefinition
 
 
Expanded class hierarchy of ObjectDefinition
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Annotation/ Plugin/ Discovery/ AnnotationBridgeDecoratorTest.php, line 60  
Namespace
Drupal\Tests\Component\Annotation\Plugin\DiscoveryView source
class ObjectDefinition extends PluginDefinition {
  
  /**
   * ObjectDefinition constructor.
   *
   * @param array $definition
   *   An array of definition values.
   */
  public function __construct(array $definition) {
    foreach ($definition as $property => $value) {
      $this->{$property} = $value;
    }
  }
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|
| ObjectDefinition::__construct | public | function | ObjectDefinition constructor. | ||
| PluginDefinition::$class | protected | property | A fully qualified class name. | ||
| PluginDefinition::$id | protected | property | The plugin ID. | 1 | |
| PluginDefinition::$provider | protected | property | The plugin provider. | ||
| PluginDefinition::getClass | public | function | Gets the class. | Overrides PluginDefinitionInterface::getClass | 1 | 
| PluginDefinition::getProvider | public | function | Gets the plugin provider. | Overrides PluginDefinitionInterface::getProvider | |
| PluginDefinition::id | public | function | Gets the unique identifier of the plugin. | Overrides PluginDefinitionInterface::id | 1 | 
| PluginDefinition::setClass | public | function | Sets the class. | Overrides PluginDefinitionInterface::setClass | 2 | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.