You are here

public function RulesConditionalElement::isDefault in Conditional Rules 7

Same name and namespace in other branches
  1. 8 includes/rules_conditional.core.inc \RulesConditionalElement::isDefault()

Determines whether this branch is default, i.e. covers the remainder of conditions outside of all non-default branches inside the conditional.

2 calls to RulesConditionalElement::isDefault()
RulesConditionalElement::canEvaluate in includes/rules_conditional.core.inc
Determines whether this branch can be evaluated.
RulesConditionalElement::checkSiblings in includes/rules_conditional.core.inc
Checks basic conditional element integrity.
3 methods override RulesConditionalElement::isDefault()
RulesConditionalDefaultCase::isDefault in includes/rules_conditional.plugin.inc
Determines whether this branch is default, i.e. covers the remainder of conditions outside of all non-default branches inside the conditional.
RulesConditionalElse::isDefault in includes/rules_conditional.plugin.inc
Determines whether this branch is default, i.e. covers the remainder of conditions outside of all non-default branches inside the conditional.
RulesConditionalTestStubDefaultElement::isDefault in tests/rules_conditional_test.inc
Determines whether this branch is default, i.e. covers the remainder of conditions outside of all non-default branches inside the conditional.

File

includes/rules_conditional.core.inc, line 248
Conditional Rules framework implementation.

Class

RulesConditionalElement
Base conditional element plugin implementation.

Code

public function isDefault() {
  return FALSE;
}