You are here

function gallery_assist_node_info in Gallery Assist 6

Implementation of hook_node_info().

File

./gallery_assist.module, line 128
Drupal content type with gallery functionality.

Code

function gallery_assist_node_info() {
  return array(
    'gallery_assist' => array(
      'name' => t('Gallery'),
      'module' => 'gallery_assist',
      'description' => t('A gallery is a article type similar in the form to a story or a page and is expanded with gallery functionalities.'),
      'has_title' => TRUE,
      'title_label' => t('Gallery title'),
      'has_body' => TRUE,
      'body_label' => t('Gallery Description'),
    ),
  );
}