updated examples
[civicrm-core.git] / api / v3 / examples / EmailCreate.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using email create API
4 * *
6a488035
TO
5 */
6function email_create_example(){
53ca8fd7 7$params = array(
6a488035
TO
8 'contact_id' => 3,
9 'location_type_id' => 6,
10 'email' => 'api@a-team.com',
11 'is_primary' => 1,
6a488035
TO
12);
13
fb32de45 14try{
15 $result = civicrm_api3('email', 'create', $params);
16}
17catch (CiviCRM_API3_Exception $e) {
18 // handle error here
19 $errorMessage = $e->getMessage();
20 $errorCode = $e->getErrorCode();
21 $errorData = $e->getExtraParams();
22 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
23}
6a488035 24
fb32de45 25return $result;
6a488035
TO
26}
27
fb32de45 28/**
6a488035
TO
29 * Function returns array of result expected from previous function
30 */
31function email_create_expectedresult(){
32
53ca8fd7 33 $expectedResult = array(
6a488035
TO
34 'is_error' => 0,
35 'version' => 3,
36 'count' => 1,
37 'id' => 3,
53ca8fd7 38 'values' => array(
39 '3' => array(
6a488035
TO
40 'id' => '3',
41 'contact_id' => '3',
42 'location_type_id' => '6',
43 'email' => 'api@a-team.com',
44 'is_primary' => '1',
45 'is_billing' => '',
46 'on_hold' => '',
47 'is_bulkmail' => '',
48 'hold_date' => '',
49 'reset_date' => '',
50 'signature_text' => '',
51 'signature_html' => '',
52 ),
53 ),
54);
55
fb32de45 56 return $expectedResult;
6a488035
TO
57}
58
59
60/*
61* This example has been generated from the API test suite. The test that created it is called
62*
63* testCreateEmail and can be found in
64* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/EmailTest.php
65*
66* You can see the outcome of the API tests at
67* http://tests.dev.civicrm.org/trunk/results-api_v3
68*
69* To Learn about the API read
70* http://book.civicrm.org/developer/current/techniques/api/
71*
72* and review the wiki at
73* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
74*
75* Read more about testing here
76* http://wiki.civicrm.org/confluence/display/CRM/Testing
77*
78* API Standards documentation:
79* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 80*/