$ids[0], 'fiscal_year' => $ids[1], ]; try { $gBId = civicrm_api3('GrantBudget', 'getvalue', $gBParams + ['return' => 'id']); $params['id'] = $gBId; } catch (CiviCRM_API3_Exception $e) { $params += $gBParams; } $apiRequest['params'] = $params; } } return $apiRequest; } /** * alter the result before returning it to the caller. */ public function toApiOutput($apiRequest, $result) { return $result; } }