function RulesAbstractPlugin::info

Overrides RulesPlugin::info

3 calls to RulesAbstractPlugin::info()
RulesAbstractPlugin::access in includes/rules.core.inc
Whether the currently logged in user has access to all configured elements.
RulesAbstractPlugin::executeByArgs in includes/rules.core.inc
Execute the configuration by passing arguments in a single array.
RulesAbstractPlugin::label in includes/rules.core.inc
Returns the label of the element.

File

includes/rules.core.inc, line 1642

Class

RulesAbstractPlugin
Defines a common base class for so-called "Abstract Plugins" like actions.

Code

public function info() {
    // Ensure the info alter callback has been executed.
    $this->forceSetup();
    return $this->info;
}