TestConditionFalse.php in Rules 8.3
Namespace
Drupal\rules_test\Plugin\ConditionFile
tests/modules/rules_test/src/Plugin/Condition/TestConditionFalse.phpView source
<?php
namespace Drupal\rules_test\Plugin\Condition;
use Drupal\rules\Core\RulesConditionBase;
/**
* Provides an always-FALSE test condition.
*
* @Condition(
* id = "rules_test_false",
* label = @Translation("Test condition returning false"),
* category = @Translation("Tests")
* )
*/
class TestConditionFalse extends RulesConditionBase {
/**
* {@inheritdoc}
*/
public function evaluate() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function summary() {
// We don't care about summaries for test condition plugins.
return '';
}
}
Classes
Name | Description |
---|---|
TestConditionFalse | Provides an always-FALSE test condition. |