You are here

function commons_documents_node_info in Drupal Commons 7.3

Implements hook_node_info().

File

modules/commons/commons_documents/commons_documents.features.inc, line 26
commons_documents.features.inc

Code

function commons_documents_node_info() {
  $items = array(
    'document' => array(
      'name' => t('Document'),
      'base' => 'node_content',
      'description' => t('Upload and display files or attachments to share with others.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}