function image_node_operations in Image 5
Same name and namespace in other branches
- 5.2 image.module \image_node_operations()
- 6 image.module \image_node_operations()
Implementation of hook_node_operations().
File
- ./
image.module, line 300
Code
function image_node_operations() {
$operations = array(
'rebuild_thumbs' => array(
'label' => t('Rebuild image thumbnails'),
'callback' => 'image_operations_rebuild',
),
);
return $operations;
}