function hosting_web_server_help in Hosting 5
Implementation of hook_help().
File
- web_server/
hosting_web_server.module, line 13 - Web server node type is defined here.
Code
function hosting_web_server_help($section) {
switch ($section) {
case 'admin/help/provision#requirements':
$output .= _hosting_requirements('drush_path');
$output .= _hosting_requirements('config_path');
$output .= _hosting_requirements('httpd_conf');
$output .= _hosting_requirements('visudo');
return $output;
break;
}
}