X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2Fexamples%2FCountry%2FCreate.php;h=988b9bcfc9158c3b8a5ec4f29d5e9242623043d8;hb=1d8ee3d65d4378d6e61eb9eb82cd3b33d70c502e;hp=6d8c3775f32c33faefc1e746c40f282111b589ee;hpb=f375d049072cc285ce8c52ec56c071b4d51c3a02;p=civicrm-core.git diff --git a/api/v3/examples/Country/Create.php b/api/v3/examples/Country/Create.php index 6d8c3775f3..988b9bcfc9 100644 --- a/api/v3/examples/Country/Create.php +++ b/api/v3/examples/Country/Create.php @@ -1,13 +1,6 @@ getErrorCode(); $errorData = $e->getExtraParams(); return array( - 'error' => $errorMessage, + 'is_error' => 1, + 'error_message' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData, ); @@ -49,10 +43,10 @@ function country_create_expectedresult() { 'is_error' => 0, 'version' => 3, 'count' => 1, - 'id' => 1252, + 'id' => 1254, 'values' => array( - '1252' => array( - 'id' => '1252', + '1254' => array( + 'id' => '1254', 'name' => 'Made Up Land', 'iso_code' => 'ZZ', 'country_code' => '', @@ -68,11 +62,10 @@ function country_create_expectedresult() { return $expectedResult; } -/** +/* * This example has been generated from the API test suite. -* The test that created it is called -* testCreateCountry -* and can be found in +* The test that created it is called "testCreateCountry" +* and can be found at: * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/CountryTest.php * * You can see the outcome of the API tests at @@ -82,7 +75,7 @@ function country_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