You are here

function document_node_info in Document 7

Same name and namespace in other branches
  1. 6 document.module \document_node_info()
  2. 8.x document.module \document_node_info()

File

./document.module, line 70

Code

function document_node_info() {
  return array(
    'document' => array(
      'name' => t('Document'),
      'base' => 'document',
      'locked' => TRUE,
      'description' => t('Upload new document. Please note that the document would be visible after administrators have published it.'),
    ),
  );
}