Mercurial > hg > cmmr2012-drupal-site
comparison core/lib/Drupal/Core/Condition/ConditionInterface.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\Condition; | 3 namespace Drupal\Core\Condition; |
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\CacheableDependencyInterface; | 9 use Drupal\Core\Cache\CacheableDependencyInterface; |
8 use Drupal\Core\Executable\ExecutableInterface; | 10 use Drupal\Core\Executable\ExecutableInterface; |
9 use Drupal\Core\Executable\ExecutableManagerInterface; | 11 use Drupal\Core\Executable\ExecutableManagerInterface; |
10 use Drupal\Core\Plugin\PluginFormInterface; | 12 use Drupal\Core\Plugin\PluginFormInterface; |
40 * @see \Drupal\Core\Condition\Annotation\Condition | 42 * @see \Drupal\Core\Condition\Annotation\Condition |
41 * @see \Drupal\Core\Condition\ConditionPluginBase | 43 * @see \Drupal\Core\Condition\ConditionPluginBase |
42 * | 44 * |
43 * @ingroup plugin_api | 45 * @ingroup plugin_api |
44 */ | 46 */ |
45 interface ConditionInterface extends ExecutableInterface, PluginFormInterface, ConfigurablePluginInterface, PluginInspectionInterface, CacheableDependencyInterface { | 47 interface ConditionInterface extends ExecutableInterface, PluginFormInterface, ConfigurableInterface, DependentPluginInterface, ConfigurablePluginInterface, PluginInspectionInterface, CacheableDependencyInterface { |
46 | 48 |
47 /** | 49 /** |
48 * Determines whether condition result will be negated. | 50 * Determines whether condition result will be negated. |
49 * | 51 * |
50 * @return bool | 52 * @return bool |