function auto_entitylabel_action_info in Automatic Entity Label 7
Implements hook_action_info().
File
- ./
auto_entitylabel.module, line 353 - Allows hiding of entity label fields and automatic label creation.
Code
function auto_entitylabel_action_info() {
$info['auto_entitylabel_entity_update_action'] = array(
'type' => 'entity',
'label' => t('Update automatic entity labels'),
'configurable' => FALSE,
);
return $info;
}