You are here

public function RulesPlugin::form in Rules 7.2

Seamlessly invokes the method implemented via faces.

Frees the caller from having to think about references.

File

includes/rules.core.inc, line 1297
Rules base classes and interfaces needed for any rule evaluation.

Class

RulesPlugin
Base class for rules plugins.

Code

public function form(&$form, &$form_state, array $options = array()) {
  $this
    ->__call('form', array(
    &$form,
    &$form_state,
    $options,
  ));
}