function deploy_perm in Deploy - Content Staging 6
Same name and namespace in other branches
- 5 deploy.module \deploy_perm()
Implementation of hook_perm().
File
- ./
deploy.module, line 251 - Deployment API which enables modules to deploy items between servers.
Code
function deploy_perm() {
return array(
'administer deployment',
'add items to deployment plan',
'deploy items',
);
}