function GLExchange::getCompletedTargetsByProject in GlobalLink Connect for Drupal 7.7
* Get completed targets for specified PDProject * *
Parameters
* $project: * PDProject for which completed targets are requested * @param * $maxResults * Maximum number of completed targets to return in this call * @return Array of completed PDTarget
File
- gl_ws/
glc/ GLExchange.php, line 662
Class
Code
function getCompletedTargetsByProject($project, $maxResults) {
return $this
->getCompletedTargetsByProjects(array(
$project->ticket,
), $maxResults);
}