You are here

function rules_system_evaluator_info in Rules 7.2

Implements hook_rules_evaluator_info() on behalf of the system module.

Related topics

File

modules/system.rules.inc, line 333
Rules integration for the system module.

Code

function rules_system_evaluator_info() {
  return array(
    'token' => array(
      'class' => 'RulesTokenEvaluator',
      'type' => array(
        'text',
        'uri',
        'list<text>',
        'list<uri>',
      ),
      'weight' => 0,
    ),
  );
}