function RulesAbstractPluginDefaults::execute

Executes the action or condition making use of the parameters as specified.

Overrides RulesPluginImplInterface::execute

File

includes/rules.core.inc, line 2181

Class

RulesAbstractPluginDefaults
Provides default implementations of all RulesPluginImplInterface methods.

Code

public function execute() {
  throw new RulesEvaluationException('@plugin_name: Execution implementation is missing.', array(
    '@plugin_name' => $this->object
      ->getPluginName(),
  ), $this->object, RulesLog::ERROR);
}