function image_replace_rules_action_info in Image Replace 7
Implements hook_rules_action_info().
File
- ./
image_replace.rules.inc, line 11 - Rules integration for Image Replace module.
Code
function image_replace_rules_action_info() {
return array(
'image_replace_rebuild_mapping_action' => array(
'label' => t('Rebuild image replace mapping'),
'parameter' => array(
'entity' => array(
'type' => 'entity',
'label' => t('Entity'),
),
),
'group' => t('Image Replace'),
),
);
}