You are here

function rules_system_data_info in Rules 7.2

Implements hook_rules_data_info() on behalf of the system module.

See also

rules_core_modules()

Related topics

File

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

Code

function rules_system_data_info() {
  return array(
    'log_entry' => array(
      'label' => t('Watchdog log entry'),
      'wrap' => TRUE,
      'property info' => _rules_system_watchdog_log_entry_info(),
    ),
  );
}