'Optional over-ride for status id'); $params['participant_status_id'] = array('title' => 'Optional Over-ride for participant id'); $params['send_receipt'] = array('title' => 'Send a receipt using built in template (possible future would be to specify the template)'); } /** * Deletes an existing FinancialTransation * * @param array $params * * @example FinancialTransationDelete.php Standard Delete Example * * @return boolean | error true if successfull, error otherwise * {@getfields financial_transaction_delete} * @access public */ function civicrm_api3_financial_transaction_delete($params) { //return 'go away - you can't delete transactions'; } /** * Retrieve one or more financial_transactions * * @param array input parameters * * * @example FinancialTransationGet.php Standard Get Example * * @param array $params an associative array of name/value pairs. * * @return array api result array * {@getfields financial_transaction_get} * @access public */ function civicrm_api3_financial_transaction_get($params) { return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); }