commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / api / v3 / examples / MailingAB / Create.php
1 <?php
2 /**
3 * Test Generated example demonstrating the MailingAB.create API.
4 *
5 * @return array
6 * API result array
7 */
8 function mailing_a_b_create_example() {
9 $params = array(
10 'mailing_id_a' => 1,
11 'mailing_id_b' => 2,
12 'mailing_id_c' => 3,
13 'testing_criteria' => 'subject',
14 'winner_criteria' => 'open',
15 'declare_winning_time' => '+2 days',
16 'group_percentage' => 10,
17 );
18
19 try{
20 $result = civicrm_api3('MailingAB', 'create', $params);
21 }
22 catch (CiviCRM_API3_Exception $e) {
23 // Handle error here.
24 $errorMessage = $e->getMessage();
25 $errorCode = $e->getErrorCode();
26 $errorData = $e->getExtraParams();
27 return array(
28 'error' => $errorMessage,
29 'error_code' => $errorCode,
30 'error_data' => $errorData,
31 );
32 }
33
34 return $result;
35 }
36
37 /**
38 * Function returns array of result expected from previous function.
39 *
40 * @return array
41 * API result array
42 */
43 function mailing_a_b_create_expectedresult() {
44
45 $expectedResult = array(
46 'is_error' => 0,
47 'version' => 3,
48 'count' => 1,
49 'id' => 1,
50 'values' => array(
51 '1' => array(
52 'id' => '1',
53 'name' => '',
54 'status' => '',
55 'mailing_id_a' => '1',
56 'mailing_id_b' => '2',
57 'mailing_id_c' => '3',
58 'domain_id' => '1',
59 'testing_criteria_id' => '',
60 'winner_criteria_id' => '',
61 'specific_url' => '',
62 'declare_winning_time' => '20150224231452',
63 'group_percentage' => '10',
64 ),
65 ),
66 );
67
68 return $expectedResult;
69 }
70
71 /*
72 * This example has been generated from the API test suite.
73 * The test that created it is called "testMailingABCreateSuccess"
74 * and can be found at:
75 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MailingABTest.php
76 *
77 * You can see the outcome of the API tests at
78 * https://test.civicrm.org/job/CiviCRM-master-git/
79 *
80 * To Learn about the API read
81 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
82 *
83 * Browse the api on your own site with the api explorer
84 * http://MYSITE.ORG/path/to/civicrm/api
85 *
86 * Read more about testing here
87 * http://wiki.civicrm.org/confluence/display/CRM/Testing
88 *
89 * API Standards documentation:
90 * http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
91 */