You are here

public function RulesExtendable::__call in Rules 7.2

Magic method: Invoke the dynamically implemented methods.

11 calls to RulesExtendable::__call()
RulesAbstractPlugin::access in includes/rules.core.inc
Whether the currently logged in user has access to all configured elements.
RulesAbstractPlugin::dependencies in includes/rules.core.inc
Calculates an array of required modules.
RulesAbstractPlugin::processSettings in includes/rules.core.inc
Processes the settings e.g. to prepare input evaluators.
RulesAbstractPlugin::setUp in includes/rules.core.inc
RulesAbstractPlugin::variableInfoAssertions in includes/rules.core.inc
Returns asserted additions to the available variable info.

... See full list

File

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

Class

RulesExtendable
Base class for RulesExtendables.

Code

public function __call($name, $arguments = array()) {
  $this
    ->forceSetUp();
  return parent::__call($name, $arguments);
}