function webform_node_info in Webform 6.2
Same name and namespace in other branches
- 5.2 webform.module \webform_node_info()
- 5 webform.module \webform_node_info()
Implementation of hook_node_info().
File
- ./
webform.module, line 412
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.'),
),
);
}