function pdf_document_node_info in PDF to ImageField 6.2
Same name and namespace in other branches
- 7.3 pdf_document/pdf_document.features.inc \pdf_document_node_info()
- 7 pdf_document/pdf_document.features.inc \pdf_document_node_info()
Implementation of hook_node_info().
File
- pdf_document/
pdf_document.features.inc, line 16
Code
function pdf_document_node_info() {
$items = array(
'document' => array(
'name' => t('Document'),
'module' => 'features',
'description' => t('A document container, used to hold a single PDF file as a downloadable attachment, and a cover page image.
The cover page representative image will be extracted automatically if possible, or may be over-ridden with a specific image selected by the editor.'),
'has_title' => '1',
'title_label' => t('Title'),
'has_body' => '1',
'body_label' => t('Summary'),
'min_word_count' => '0',
'help' => t('The summary should contain a brief overview describing the content of the document.'),
),
);
return $items;
}