function auto_entitylabel_node_operations in Automatic Entity Label 7
Implements hook_node_operations().
File
- ./
auto_entitylabel.module, line 381 - Allows hiding of entity label fields and automatic label creation.
Code
function auto_entitylabel_node_operations() {
$operations = array(
'entitylabel_update' => array(
'label' => t('Update automatic node titles'),
'callback' => 'auto_entitylabel_operations_update',
),
);
return $operations;
}