X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2Fexamples%2FContributionSoft%2FCreate.php;h=8450990dfc2409e9301cd7079452d8f08f44465b;hb=146d89958a273935ea97b4157fa8c89c7a5bffc5;hp=ff9f74771828c233eda248b8c513e5f436dbc74a;hpb=f3e103be0599b96b3cb36b8f64841c82719478cd;p=civicrm-core.git diff --git a/api/v3/examples/ContributionSoft/Create.php b/api/v3/examples/ContributionSoft/Create.php index ff9f747718..8450990dfc 100644 --- a/api/v3/examples/ContributionSoft/Create.php +++ b/api/v3/examples/ContributionSoft/Create.php @@ -1,65 +1,74 @@ 1, - 'contact_id' => 2, - 'amount' => '10', - 'currency' => 'USD', - 'soft_credit_type_id' => 5, -); +function contribution_soft_create_example() { + $params = array( + 'contribution_id' => 6, + 'contact_id' => 19, + 'amount' => '10', + 'currency' => 'USD', + 'soft_credit_type_id' => 5, + ); -try{ - $result = civicrm_api3('contribution_soft', 'create', $params); -} -catch (CiviCRM_API3_Exception $e) { - // handle error here - $errorMessage = $e->getMessage(); - $errorCode = $e->getErrorCode(); - $errorData = $e->getExtraParams(); - return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData); -} + try{ + $result = civicrm_api3('ContributionSoft', 'create', $params); + } + catch (CiviCRM_API3_Exception $e) { + // Handle error here. + $errorMessage = $e->getMessage(); + $errorCode = $e->getErrorCode(); + $errorData = $e->getExtraParams(); + return array( + 'is_error' => 1, + 'error_message' => $errorMessage, + 'error_code' => $errorCode, + 'error_data' => $errorData, + ); + } -return $result; + return $result; } /** - * Function returns array of result expected from previous function + * Function returns array of result expected from previous function. + * + * @return array + * API result array */ -function contribution_soft_create_expectedresult(){ +function contribution_soft_create_expectedresult() { $expectedResult = array( - 'is_error' => 0, - 'version' => 3, - 'count' => 1, - 'id' => 1, - 'values' => array( - '1' => array( - 'id' => '1', - 'contribution_id' => '1', - 'contact_id' => '2', - 'amount' => '10', - 'currency' => 'USD', - 'pcp_id' => '', - 'pcp_display_in_roll' => '', - 'pcp_roll_nickname' => '', - 'pcp_personal_note' => '', - 'soft_credit_type_id' => '5', - ), + 'is_error' => 0, + 'version' => 3, + 'count' => 1, + 'id' => 5, + 'values' => array( + '5' => array( + 'id' => '5', + 'contribution_id' => '6', + 'contact_id' => '19', + 'amount' => '10', + 'currency' => 'USD', + 'pcp_id' => '', + 'pcp_display_in_roll' => '', + 'pcp_roll_nickname' => '', + 'pcp_personal_note' => '', + 'soft_credit_type_id' => '5', + ), ), -); + ); return $expectedResult; } - /* -* This example has been generated from the API test suite. The test that created it is called -* -* testCreateContributionSoft and can be found in +* This example has been generated from the API test suite. +* The test that created it is called "testCreateContributionSoft" +* and can be found at: * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ContributionSoftTest.php * * You can see the outcome of the API tests at @@ -69,7 +78,7 @@ function contribution_soft_create_expectedresult(){ * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API * * Browse the api on your own site with the api explorer -* http://MYSITE.ORG/path/to/civicrm/api/explorer +* http://MYSITE.ORG/path/to/civicrm/api * * Read more about testing here * http://wiki.civicrm.org/confluence/display/CRM/Testing