ConfigurableAttributeInterface.php 544 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Contains \Drupal\linkit\ConfigurableAttributeInterface.
  5. */
  6. namespace Drupal\linkit;
  7. use Drupal\Core\Plugin\PluginFormInterface;
  8. /**
  9. * Defines the interface for configurable attributes.
  10. *
  11. * @see \Drupal\linkit\Annotation\Attribute
  12. * @see \Drupal\linkit\ConfigurableAttributeBase
  13. * @see \Drupal\linkit\AttributeInterface
  14. * @see \Drupal\linkit\AttributeBase
  15. * @see \Drupal\linkit\AttributeManager
  16. * @see plugin_api
  17. */
  18. interface ConfigurableAttributeInterface extends AttributeInterface, PluginFormInterface {
  19. }