Mercurial > hg > cmmr2012-drupal-site
comparison core/lib/Drupal/Core/Display/VariantInterface.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
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 |