You are here

public function RulesNodeConditionPromoted::execute in Rules 7.2

Executes the condition.

File

modules/node.eval.inc, line 135
Contains rules integration for the node module needed during evaluation.

Class

RulesNodeConditionPromoted
Condition: Check if the node is promoted to the frontpage.

Code

public function execute($node) {
  return $node->promote == 1;
}