Same name and namespace in other branches
  1. 5.x developer/examples/multipage_form_example.module \multipage_form_example_node_info()

Implementation of hook_node_info().

File

developer/examples/multipage_form_example.module, line 43

Code

function multipage_form_example_node_info() {
  return array(
    'multipage_form_example' => array(
      'name' => t('multipage form example'),
      'base' => 'multipage_form_example',
    ),
  );
}