You are here

public function ConditionTestNoExistingType::summary in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/condition_test/src/Plugin/Condition/ConditionTestNoExistingType.php \Drupal\condition_test\Plugin\Condition\ConditionTestNoExistingType::summary()

Provides a human readable summary of the condition's configuration.

Overrides ConditionInterface::summary

File

core/modules/system/tests/modules/condition_test/src/Plugin/Condition/ConditionTestNoExistingType.php, line 30

Class

ConditionTestNoExistingType
Provides a condition that has a no existing context.

Namespace

Drupal\condition_test\Plugin\Condition

Code

public function summary() {
  return $this
    ->t('Condition that requires a non-existent context.');
}