You are here

function image_node_info in Image 6

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

Implementation of hook_node_info

File

./image.module, line 69

Code

function image_node_info() {
  return array(
    'image' => array(
      'name' => t('Image'),
      'module' => 'image',
      'description' => t('An image (with thumbnail). This is ideal for publishing photographs or screenshots.'),
    ),
  );
}