You are here

function image_node_operations in Image 5.2

Same name and namespace in other branches
  1. 5 image.module \image_node_operations()
  2. 6 image.module \image_node_operations()

Implementation of hook_node_operations().

File

./image.module, line 319

Code

function image_node_operations() {
  $operations = array(
    'rebuild_thumbs' => array(
      'label' => t('Rebuild derivative images'),
      'callback' => 'image_operations_rebuild',
    ),
  );
  return $operations;
}