Merge pull request #2749 from monishdeb/HR-317
[civicrm-core.git] / api / v3 / examples / Activity / ContactRefCustomField.php
index a1ae2ae600daeac0e9bd4e844572765961aaa503..91e13e1b8f20397c3a4c235f8b60168cce4ceb04 100644 (file)
@@ -1,12 +1,12 @@
 <?php
-
-/*
- demonstrates create with Contact Reference Custom Field
+/**
+ * Test Generated example of using activity Create API
+ * demonstrates create with Contact Reference Custom Field *
  */
 function activity_create_example(){
 $params = array(
-  'source_contact_id' => 17,
-  'activity_type_id' => '44',
+  'source_contact_id' => 1,
+  'activity_type_id' => '46',
   'subject' => 'test activity type id',
   'activity_date_time' => '2011-06-02 14:36:13',
   'status_id' => 2,
@@ -14,16 +14,24 @@ $params = array(
   'duration' => 120,
   'location' => 'Pensulvania',
   'details' => 'a test activity',
-  'version' => 3,
-  'custom_2' => '17',
+  'custom_2' => '1',
 );
 
-  $result = civicrm_api( 'activity','create',$params );
+try{
+  $result = civicrm_api3('activity', '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);
+}
 
-  return $result;
+return $result;
 }
 
-/*
+/**
  * Function returns array of result expected from previous function
  */
 function activity_create_expectedresult(){
@@ -37,7 +45,7 @@ function activity_create_expectedresult(){
       '1' => array(
           'id' => '1',
           'source_record_id' => '',
-          'activity_type_id' => '44',
+          'activity_type_id' => '46',
           'subject' => 'test activity type id',
           'activity_date_time' => '20110602143613',
           'duration' => '120',
@@ -63,7 +71,7 @@ function activity_create_expectedresult(){
     ),
 );
 
-  return $expectedResult  ;
+  return $expectedResult;
 }
 
 
@@ -71,20 +79,20 @@ function activity_create_expectedresult(){
 * This example has been generated from the API test suite. The test that created it is called
 *
 * testActivityCreateCustomContactRefField and can be found in
-* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/ActivityTest.php
+* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ActivityTest.php
 *
 * You can see the outcome of the API tests at
-* http://tests.dev.civicrm.org/trunk/results-api_v3
+* https://test.civicrm.org/job/CiviCRM-master-git/
 *
 * To Learn about the API read
-* http://book.civicrm.org/developer/current/techniques/api/
+* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
 *
-* and review the wiki at
-* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
+* Browse the api on your own site with the api explorer
+* http://MYSITE.ORG/path/to/civicrm/api/explorer
 *
 * Read more about testing here
 * http://wiki.civicrm.org/confluence/display/CRM/Testing
 *
 * API Standards documentation:
 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
-*/
\ No newline at end of file
+*/