You are here

function pdf_document_node_info in PDF to ImageField 7.3

Same name and namespace in other branches
  1. 6.2 pdf_document/pdf_document.features.inc \pdf_document_node_info()
  2. 7 pdf_document/pdf_document.features.inc \pdf_document_node_info()

Implements hook_node_info().

File

pdf_document/pdf_document.features.inc, line 11
pdf_document.features.inc

Code

function pdf_document_node_info() {
  $items = array(
    'document' => array(
      'name' => t('Document'),
      'base' => 'node_content',
      'description' => t('A PDF document, with preview.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}