Merge pull request #5020 from pratikshad/4.6-alpha4
[civicrm-core.git] / api / v3 / examples / MessageTemplate / Create.php
1 <?php
2 /**
3 * @file
4 * Test Generated API Example.
5 * See bottom of this file for more detail.
6 */
7
8 /**
9 * Test Generated example of using message_template create API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15 function message_template_create_example() {
16 $params = array(
17 'msg_title' => 'msg_title_165',
18 'msg_subject' => 'msg_subject_165',
19 'msg_text' => 'msg_text_165',
20 'msg_html' => 'msg_html_165',
21 'workflow_id' => 165,
22 'is_default' => '1',
23 'is_reserved' => 1,
24 );
25
26 try{
27 $result = civicrm_api3('message_template', 'create', $params);
28 }
29 catch (CiviCRM_API3_Exception $e) {
30 // Handle error here.
31 $errorMessage = $e->getMessage();
32 $errorCode = $e->getErrorCode();
33 $errorData = $e->getExtraParams();
34 return array(
35 'error' => $errorMessage,
36 'error_code' => $errorCode,
37 'error_data' => $errorData,
38 );
39 }
40
41 return $result;
42 }
43
44 /**
45 * Function returns array of result expected from previous function.
46 *
47 * @return array
48 * API result array
49 */
50 function message_template_create_expectedresult() {
51
52 $expectedResult = array(
53 'is_error' => 0,
54 'version' => 3,
55 'count' => 1,
56 'id' => 65,
57 'values' => array(
58 '65' => array(
59 'id' => '65',
60 'msg_title' => 'msg_title_165',
61 'msg_subject' => 'msg_subject_165',
62 'msg_text' => 'msg_text_165',
63 'msg_html' => 'msg_html_165',
64 'is_active' => '1',
65 'workflow_id' => '165',
66 'is_default' => '1',
67 'is_reserved' => '1',
68 'is_sms' => '',
69 'pdf_format_id' => '',
70 ),
71 ),
72 );
73
74 return $expectedResult;
75 }
76
77 /**
78 * This example has been generated from the API test suite.
79 * The test that created it is called
80 * testCreate
81 * and can be found in
82 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MessageTemplateTest.php
83 *
84 * You can see the outcome of the API tests at
85 * https://test.civicrm.org/job/CiviCRM-master-git/
86 *
87 * To Learn about the API read
88 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
89 *
90 * Browse the api on your own site with the api explorer
91 * http://MYSITE.ORG/path/to/civicrm/api/explorer
92 *
93 * Read more about testing here
94 * http://wiki.civicrm.org/confluence/display/CRM/Testing
95 *
96 * API Standards documentation:
97 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
98 */