function deploy_help in Deploy - Content Staging 6
Same name and namespace in other branches
- 5 deploy.module \deploy_help()
Implementation of hook_help().
File
- ./
deploy.module, line 226 - Deployment API which enables modules to deploy items between servers.
Code
function deploy_help($path, $args) {
$output = '';
switch ($path) {
case 'admin/help#deploy':
return t('Allows users to deploy objects between servers.');
case 'admin/build/deploy/push':
return t('The Deploy module requires a user account on the remote server to authenticate against. This user will require the appropriate permissions for items being deployed (administer nodes, create users, etc.) It is recommended that a unique user and role be created specifically for deployment purposes.');
}
}