You are here

function deploy_get_plan_item in Deploy - Content Staging 6

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

Get the details for a single deployment plan item.

Parameters

$iid: Unique identifier for the plan item whose details are being retrieved.

File

./deploy.module, line 541
Deployment API which enables modules to deploy items between servers.

Code

function deploy_get_plan_item($iid) {
  $result = db_query("SELECT * FROM {deploy_plan_items} WHERE iid = %d", $iid);
  return db_fetch_array($result);
}