You are here

function matching_node_info in Quiz 6.2

Same name and namespace in other branches
  1. 5.2 matching.module \matching_node_info()
  2. 5 matching.module \matching_node_info()

Implementation of hook_node().

File

./matching.module, line 14
Matching question type for quiz module

Code

function matching_node_info() {
  return array(
    'matching' => array(
      'name' => t('matching'),
      'base' => 'matching',
    ),
  );
}