You are here

function qcollection_node_info in Quiz 6.6

Implementation of hook_node_info().

File

includes/qcollection/qcollection.module, line 66
The main file for qcollection.

Code

function qcollection_node_info() {
  return array(
    'qcollection' => array(
      'name' => t(QCOLLECTION_NAME),
      'module' => 'qcollection',
      'description' => t('A content type for the quiz module: gathers question items into a collection, separate from quiz-taking.'),
      'has_title' => TRUE,
      'has_body' => TRUE,
      'body_label' => t('Notes'),
    ),
  );
}