function webform_layout_help in Webform Layout 7
Same name and namespace in other branches
- 6 webform_layout.module \webform_layout_help()
- 7.2 webform_layout.module \webform_layout_help()
Implements hook_help().
File
- ./
webform_layout.module, line 12
Code
function webform_layout_help($section = 'admin/help#webform_layout', $arg = NULL) {
switch ($section) {
case 'admin/help#webform_layout':
// Return a line-break version of the module README.txt
return nl2br(file_get_contents(drupal_get_path('module', 'webform_layout') . '/README.txt'));
}
return '';
}