You are here

function radioactivity_rules_event_info in Radioactivity 7.2

Implements hook_rules_event_info().

File

./radioactivity.rules.inc, line 128

Code

function radioactivity_rules_event_info() {
  return array(
    'radioactivity_field_cut_off' => array(
      'label' => t('Energy is below the cut off level'),
      'group' => t('Radioactivity'),
      'variables' => array(
        'entity' => array(
          'type' => 'entity',
          'label' => t('Entity'),
        ),
      ),
    ),
  );
}