function rules_system_evaluator_info

Implements hook_rules_evaluator_info() on behalf of the system module.

Related topics

File

modules/system.rules.inc, line 333

Code

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