Mercurial > hg > isophonics-drupal-site
comparison core/lib/Drupal/Core/Display/VariantInterface.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
17:129ea1e6d783 | 18:af1871eacc83 |
---|---|
1 <?php | 1 <?php |
2 | 2 |
3 namespace Drupal\Core\Display; | 3 namespace Drupal\Core\Display; |
4 | 4 |
5 use Drupal\Component\Plugin\ConfigurableInterface; | |
5 use Drupal\Component\Plugin\ConfigurablePluginInterface; | 6 use Drupal\Component\Plugin\ConfigurablePluginInterface; |
7 use Drupal\Component\Plugin\DependentPluginInterface; | |
6 use Drupal\Component\Plugin\PluginInspectionInterface; | 8 use Drupal\Component\Plugin\PluginInspectionInterface; |
7 use Drupal\Core\Cache\RefinableCacheableDependencyInterface; | 9 use Drupal\Core\Cache\RefinableCacheableDependencyInterface; |
8 use Drupal\Core\Plugin\PluginFormInterface; | 10 use Drupal\Core\Plugin\PluginFormInterface; |
9 use Drupal\Core\Session\AccountInterface; | 11 use Drupal\Core\Session\AccountInterface; |
10 | 12 |
14 * @see \Drupal\Core\Display\Annotation\DisplayVariant | 16 * @see \Drupal\Core\Display\Annotation\DisplayVariant |
15 * @see \Drupal\Core\Display\VariantBase | 17 * @see \Drupal\Core\Display\VariantBase |
16 * @see \Drupal\Core\Display\VariantManager | 18 * @see \Drupal\Core\Display\VariantManager |
17 * @see plugin_api | 19 * @see plugin_api |
18 */ | 20 */ |
19 interface VariantInterface extends PluginInspectionInterface, ConfigurablePluginInterface, PluginFormInterface, RefinableCacheableDependencyInterface { | 21 interface VariantInterface extends PluginInspectionInterface, ConfigurableInterface, DependentPluginInterface, ConfigurablePluginInterface, PluginFormInterface, RefinableCacheableDependencyInterface { |
20 | 22 |
21 /** | 23 /** |
22 * Returns the user-facing display variant label. | 24 * Returns the user-facing display variant label. |
23 * | 25 * |
24 * @return string | 26 * @return string |