You are here

function deploy_get_plan in Deploy - Content Staging 5

Same name and namespace in other branches
  1. 6 deploy.module \deploy_get_plan()

retrieve an array of a deployment plan

3 calls to deploy_get_plan()
deploy_delete_plan_form in ./deploy.module
delete a deployment plan confirmation form
deploy_plan_form in ./deploy.module
add/edit deployment plan form
deploy_pushform_submit in ./deploy.module
submit handler for deployment push form

File

./deploy.module, line 694

Code

function deploy_get_plan($pid) {
  $result = db_query("select * from {deploy_plan} where pid = %d", $pid);
  return db_fetch_array($result);
}