class Sandwich

Same name in this branch
  1. 4.0.x modules/plugin_type_example/src/Annotation/Sandwich.php \Drupal\plugin_type_example\Annotation\Sandwich
Same name and namespace in other branches
  1. 3.x modules/plugin_type_example/src/Annotation/Sandwich.php \Drupal\plugin_type_example\Annotation\Sandwich
  2. 8.x-1.x plugin_type_example/src/Annotation/Sandwich.php \Drupal\plugin_type_example\Annotation\Sandwich

Defines a Sandwich attribute class.

Provides an example of how to define a new attribute type for use in defining a plugin type. Demonstrates documenting the arguments for the class constructor to help developers understand how to configure plugin instances.

When defining attributes for a plugin type start by extending the existing Drupal\Component\Plugin\Attribute\Plugin class. Then create a __construct() method whose arguments are the configuration options for the plugin type.

Classes that extend the Plugin class should always accept $id, $deriver arguments. Developers can add any additional required, or optional, arguments necessary to configure their specific plugin type.

The #[\Attribute(\Attribute::TARGET_CLASS)] line says that the class, Block, defines a #[Block()] attribute, and that the block attribute can only be used on classes. Or put another way, the code that the #[Block()] attribute is annotating must be a class, or it won’t validate.

Attributes

#[\Attribute(\Attribute::TARGET_CLASS)]

Hierarchy

  • class \Drupal\plugin_type_example\Attribute\Sandwich implements \Drupal\Component\Plugin\Attribute\Plugin

Expanded class hierarchy of Sandwich

See also

\Drupal\plugin_type_example\SandwichPluginManager

Plugin API

3 files declare their use of Sandwich
ExampleHamSandwich.php in modules/plugin_type_example/src/Plugin/Sandwich/ExampleHamSandwich.php
ExampleMeatballSandwich.php in modules/plugin_type_example/src/Plugin/Sandwich/ExampleMeatballSandwich.php
SandwichPluginManager.php in modules/plugin_type_example/src/SandwichPluginManager.php

File

modules/plugin_type_example/src/Attribute/Sandwich.php, line 31

Namespace

Drupal\plugin_type_example\Attribute
View source
class Sandwich extends Plugin {
  
  /**
   * Construct a sandwich attribute.
   *
   * @param string $id
   *   The plugin ID.
   * @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $description
   *   (optional) Description of the sandwich.
   * @param float|null $calories
   *   (optional) Number of calories in the sandwich.
   * @param class-string|null $deriver
   *   (optional) The deriver class.
   */
  public function __construct(public readonly string $id, public readonly ?TranslatableMarkup $description = NULL, public readonly ?float $calories = NULL, public readonly ?string $deriver = NULL) {
  }

}

Members

Title Sort descending Modifiers Object type Summary
Sandwich::__construct public function Construct a sandwich attribute.