You are here

function webform_node_info in Webform 5.2

Same name and namespace in other branches
  1. 5 webform.module \webform_node_info()
  2. 6.2 webform.module \webform_node_info()

Implementation of hook_node_info().

File

./webform.module, line 259

Code

function webform_node_info() {
  return array(
    'webform' => array(
      'name' => t('Webform'),
      'module' => 'webform',
      'description' => t('Create a new form or questionnaire accessible to users. Submission results and statistics are recorded and accessible to privileged users.'),
    ),
  );
}