function RulesPlugin::form

Seamlessly invokes the method implemented via faces.

Frees the caller from having to think about references.

File

includes/rules.core.inc, line 1308

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,
    ));
}