diff --git a/src/Attribute/ListOptions.php b/src/Attribute/ListOptions.php new file mode 100644 index 0000000000000000000000000000000000000000..3599220b0d6107740798ec11daddb56488007100 --- /dev/null +++ b/src/Attribute/ListOptions.php @@ -0,0 +1,33 @@ +<?php + +namespace Drupal\list_predefined_options\Attribute; + +use Drupal\Component\Plugin\Attribute\Plugin; +use Drupal\Core\StringTranslation\TranslatableMarkup; + +/** + * The List Options attribute. + */ +#[\Attribute(\Attribute::TARGET_CLASS)] +class ListOptions extends Plugin { + + /** + * Constructs a List Options attribute. + * + * @param string $id + * The plugin ID. + * @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $label + * The label of the plugin. + * @param array $field_types + * An array of field type plugin IDs. Only the following are supported: + * - list_float + * - list_integer + * - list_string. + */ + public function __construct( + public readonly string $id, + public readonly ?TranslatableMarkup $label = NULL, + public readonly array $field_types = [], + ) {} + +} diff --git a/src/ListOptionsManager.php b/src/ListOptionsManager.php index c0234a7bf10cfdbfe359a2de8004788c5e0b983f..c9aec4604723eb7a4b1aa9e6733e7e2646d1fb62 100644 --- a/src/ListOptionsManager.php +++ b/src/ListOptionsManager.php @@ -23,7 +23,14 @@ class ListOptionsManager extends DefaultPluginManager { * The module handler to invoke the alter hook with. */ public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { - parent::__construct('Plugin/ListOptions', $namespaces, $module_handler, 'Drupal\list_predefined_options\Plugin\ListOptionsInterface', 'Drupal\list_predefined_options\Annotation\ListOptions'); + parent::__construct( + 'Plugin/ListOptions', + $namespaces, + $module_handler, + 'Drupal\list_predefined_options\Plugin\ListOptionsInterface', + 'Drupal\list_predefined_options\Attribute\ListOptions', + 'Drupal\list_predefined_options\Annotation\ListOptions' + ); $this->alterInfo('list_predefined_options_list_options_info'); $this->setCacheBackend($cache_backend, 'list_predefined_options_list_options_plugins');