You are here

public function RulesAbstractPlugin::info in Rules 7.2

Returns the info of the plugin.

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 1631
Rules base classes and interfaces needed for any rule evaluation.

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