You are here

function rules_php_evaluator_info in Rules 7.2

Implements hook_rules_evaluator_info() on behalf of the php module.

Related topics

File

modules/php.rules.inc, line 22
Rules integration for the php module.

Code

function rules_php_evaluator_info() {
  return array(
    'php' => array(
      'class' => 'RulesPHPEvaluator',
      'type' => array(
        'text',
        'uri',
      ),
      'weight' => -10,
      'module' => 'php',
    ),
  );
}