You are here

function deploy_get_plan_item in Deploy - Content Staging 5

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

retrieve a deployment plan item as an array.

1 call to deploy_get_plan_item()
deploy_delete_item_form in ./deploy.module
delete an item from a deployment plan confirmation form.

File

./deploy.module, line 710

Code

function deploy_get_plan_item($iid) {
  $result = db_query("select * from {deploy_plan_items} where iid = %d", $iid);
  return db_fetch_array($result);
}