You are here

function photos_node_info in Album Photos 6.2

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

File

./photos.module, line 330

Code

function photos_node_info() {
  return array(
    'photos' => array(
      'name' => t('Album'),
      'module' => 'photos',
      'has_title' => true,
      'title_label' => t('Album name'),
      'has_body' => true,
      'body_label' => t('Album description'),
    ),
  );
}