Version 1
[yaffs-website] / web / modules / contrib / linkit / src / ConfigurableAttributeInterface.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\linkit\ConfigurableAttributeInterface.
6  */
7
8 namespace Drupal\linkit;
9
10 use Drupal\Core\Plugin\PluginFormInterface;
11
12 /**
13  * Defines the interface for configurable attributes.
14  *
15  * @see \Drupal\linkit\Annotation\Attribute
16  * @see \Drupal\linkit\ConfigurableAttributeBase
17  * @see \Drupal\linkit\AttributeInterface
18  * @see \Drupal\linkit\AttributeBase
19  * @see \Drupal\linkit\AttributeManager
20  * @see plugin_api
21  */
22 interface ConfigurableAttributeInterface extends AttributeInterface, PluginFormInterface {
23 }