function deploy_help in Deploy - Content Staging 5
Same name and namespace in other branches
- 6 deploy.module \deploy_help()
Implementation of hook_help().
File
- ./
deploy.module, line 7
Code
function deploy_help($section = '') {
$output = '';
switch ($section) {
case 'admin/help#deploy':
$output = t('Allows users to deploy objects between servers.');
}
return $output;
}