You are here

public function RulesConditionalCase::fallThrough in Conditional Rules 7

Same name and namespace in other branches
  1. 8 includes/rules_conditional.plugin.inc \RulesConditionalCase::fallThrough()

Returns whether this case should fall through.

File

includes/rules_conditional.plugin.inc, line 342
Rules plugin implementation.

Class

RulesConditionalCase
Switch case.

Code

public function fallThrough() {
  return !empty($this->settings['fall_through']);
}