function deploy_push in Deploy - Content Staging 5
push a deployment plan live
1 string reference to 'deploy_push'
- deploy_menu in ./
deploy.module  - Implementation of hook_menu().
 
File
- ./
deploy.module, line 587  
Code
function deploy_push($pid) {
  if (is_null($pid)) {
    drupal_goto('/admin/build/deploy');
  }
  $output = t('Choose a deployment server');
  $output .= drupal_get_form('deploy_pushform', $pid);
  return $output;
}