You are here

function photos_node_info in Album Photos 7.3

Same name and namespace in other branches
  1. 6.2 photos.module \photos_node_info()

Implements hook_node_info().

File

./photos.module, line 475
Implementation of photos.module.

Code

function photos_node_info() {
  return array(
    'photos' => array(
      'name' => t('Album'),
      'base' => 'photos',
      'description' => 'Create new photo albums.',
      'has_title' => TRUE,
      'title_label' => t('Album name'),
    ),
  );
}