Merge pull request #5216 from atif-shaikh/CRM-15792
[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(
29 'error' => $errorMessage,
30 'error_code' => $errorCode,
31 'error_data' => $errorData,
32 );
33 }
34
35 return $result;
6a488035
TO
36}
37
fb32de45 38/**
50fb255d 39 * Function returns array of result expected from previous function.
40 *
41 * @return array
42 * API result array
6a488035 43 */
50fb255d 44function mail_settings_create_expectedresult() {
6a488035 45
53ca8fd7 46 $expectedResult = array(
50fb255d 47 'is_error' => 0,
48 'version' => 3,
49 'count' => 1,
a828d7b8 50 'id' => 5,
50fb255d 51 'values' => array(
a828d7b8
CW
52 '5' => array(
53 'id' => '5',
50fb255d 54 'domain_id' => '1',
55 'name' => 'my mail setting',
56 'is_default' => '1',
57 'domain' => 'setting.com',
58 'localpart' => '',
59 'return_path' => '',
60 'protocol' => '',
61 'server' => 'localhost',
62 'port' => '',
63 'username' => 'sue',
64 'password' => 'pass',
65 'is_ssl' => '',
66 'source' => '',
67 ),
6a488035 68 ),
50fb255d 69 );
6a488035 70
fb32de45 71 return $expectedResult;
6a488035
TO
72}
73
a828d7b8 74/*
50fb255d 75* This example has been generated from the API test suite.
a828d7b8
CW
76* The test that created it is called "testDeleteMailSettings"
77* and can be found at:
69d79249 78* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MailSettingsTest.php
6a488035
TO
79*
80* You can see the outcome of the API tests at
69d79249 81* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
82*
83* To Learn about the API read
69d79249 84* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 85*
69d79249 86* Browse the api on your own site with the api explorer
41d4d31f 87* http://MYSITE.ORG/path/to/civicrm/api
6a488035
TO
88*
89* Read more about testing here
90* http://wiki.civicrm.org/confluence/display/CRM/Testing
91*
92* API Standards documentation:
93* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 94*/