Merge pull request #10155 from totten/master-pdf-save2
[civicrm-core.git] / api / v3 / examples / MailSettings / Create.php
CommitLineData
6a488035 1<?php
50fb255d 2/**
a828d7b8 3 * Test Generated example demonstrating the MailSettings.create API.
50fb255d 4 *
50fb255d 5 * @return array
6 * API result array
7 */
8function mail_settings_create_example() {
9 $params = array(
10 'domain_id' => 1,
11 'name' => 'my mail setting',
12 'domain' => 'setting.com',
13 'local_part' => 'civicrm+',
14 'server' => 'localhost',
15 'username' => 'sue',
16 'password' => 'pass',
17 'is_default' => 1,
18 );
6a488035 19
50fb255d 20 try{
a828d7b8 21 $result = civicrm_api3('MailSettings', 'create', $params);
50fb255d 22 }
23 catch (CiviCRM_API3_Exception $e) {
24 // Handle error here.
25 $errorMessage = $e->getMessage();
26 $errorCode = $e->getErrorCode();
27 $errorData = $e->getExtraParams();
28 return array(
5be22f39 29 'is_error' => 1,
30 'error_message' => $errorMessage,
50fb255d 31 'error_code' => $errorCode,
32 'error_data' => $errorData,
33 );
34 }
35
36 return $result;
6a488035
TO
37}
38
fb32de45 39/**
50fb255d 40 * Function returns array of result expected from previous function.
41 *
42 * @return array
43 * API result array
6a488035 44 */
50fb255d 45function mail_settings_create_expectedresult() {
6a488035 46
53ca8fd7 47 $expectedResult = array(
50fb255d 48 'is_error' => 0,
49 'version' => 3,
50 'count' => 1,
a828d7b8 51 'id' => 5,
50fb255d 52 'values' => array(
a828d7b8
CW
53 '5' => array(
54 'id' => '5',
50fb255d 55 'domain_id' => '1',
56 'name' => 'my mail setting',
57 'is_default' => '1',
58 'domain' => 'setting.com',
59 'localpart' => '',
60 'return_path' => '',
61 'protocol' => '',
62 'server' => 'localhost',
63 'port' => '',
64 'username' => 'sue',
65 'password' => 'pass',
66 'is_ssl' => '',
67 'source' => '',
68 ),
6a488035 69 ),
50fb255d 70 );
6a488035 71
fb32de45 72 return $expectedResult;
6a488035
TO
73}
74
a828d7b8 75/*
50fb255d 76* This example has been generated from the API test suite.
a828d7b8
CW
77* The test that created it is called "testDeleteMailSettings"
78* and can be found at:
69d79249 79* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MailSettingsTest.php
6a488035
TO
80*
81* You can see the outcome of the API tests at
69d79249 82* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
83*
84* To Learn about the API read
69d79249 85* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 86*
69d79249 87* Browse the api on your own site with the api explorer
41d4d31f 88* http://MYSITE.ORG/path/to/civicrm/api
6a488035
TO
89*
90* Read more about testing here
91* http://wiki.civicrm.org/confluence/display/CRM/Testing
92*
93* API Standards documentation:
94* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 95*/