function ConditionPluginBase::isNegated
Determines whether condition result will be negated.
Return value
bool Whether the condition result will be negated.
Overrides ConditionInterface::isNegated
4 calls to ConditionPluginBase::isNegated()
- CurrentThemeCondition::summary in core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php  - Provides a human readable summary of the condition's configuration.
 - EntityBundle::evaluate in core/
lib/ Drupal/ Core/ Entity/ Plugin/ Condition/ EntityBundle.php  - Evaluates the condition and returns TRUE or FALSE accordingly.
 - Language::evaluate in core/
modules/ language/ src/ Plugin/ Condition/ Language.php  - Evaluates the condition and returns TRUE or FALSE accordingly.
 - UserRole::evaluate in core/
modules/ user/ src/ Plugin/ Condition/ UserRole.php  - Evaluates the condition and returns TRUE or FALSE accordingly.
 
1 method overrides ConditionPluginBase::isNegated()
- ResponseStatus::isNegated in core/
modules/ system/ src/ Plugin/ Condition/ ResponseStatus.php  - Determines whether condition result will be negated.
 
File
- 
              core/
lib/ Drupal/ Core/ Condition/ ConditionPluginBase.php, line 44  
Class
- ConditionPluginBase
 - Provides a basis for fulfilling contexts for condition plugins.
 
Namespace
Drupal\Core\ConditionCode
public function isNegated() {
  return !empty($this->configuration['negate']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.