function image_node_info in Image 6
Same name and namespace in other branches
- 5.2 image.module \image_node_info()
- 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.'),
),
);
}