infra updated incorrectly set public functions to private on payment classes
[civicrm-core.git] / api / v3 / examples / MailingGroup / Subscribe.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
50fb255d 3 * @file
4 * Test Generated API Example.
5 * See bottom of this file for more detail.
6a488035 6 */
6a488035 7
50fb255d 8/**
9 * Test Generated example of using mailing_group subscribe API.
10 *
11 *
12 * @return array
13 * API result array
14 */
15function mailing_group_subscribe_example() {
16 $params = array(
17 'email' => 'test@test.test',
18 'group_id' => 2,
19 'contact_id' => 3,
20 'hash' => 'b15de8b64e2cec34',
21 'time_stamp' => '20101212121212',
22 );
6a488035 23
50fb255d 24 try{
25 $result = civicrm_api3('mailing_group', 'subscribe', $params);
26 }
27 catch (CiviCRM_API3_Exception $e) {
28 // Handle error here.
29 $errorMessage = $e->getMessage();
30 $errorCode = $e->getErrorCode();
31 $errorData = $e->getExtraParams();
32 return array(
33 'error' => $errorMessage,
34 'error_code' => $errorCode,
35 'error_data' => $errorData,
36 );
37 }
38
39 return $result;
6a488035
TO
40}
41
fb32de45 42/**
50fb255d 43 * Function returns array of result expected from previous function.
44 *
45 * @return array
46 * API result array
6a488035 47 */
50fb255d 48function mailing_group_subscribe_expectedresult() {
6a488035 49
53ca8fd7 50 $expectedResult = array(
50fb255d 51 'is_error' => 0,
52 'version' => 3,
53 'count' => 1,
54 'id' => 1,
55 'values' => array(
9f1b81e0 56 '1' => array(
50fb255d 57 'contact_id' => '3',
58 'subscribe_id' => '1',
59 'hash' => '67eac7789eaee00',
60 ),
6a488035 61 ),
50fb255d 62 );
6a488035 63
fb32de45 64 return $expectedResult;
6a488035
TO
65}
66
50fb255d 67/**
68* This example has been generated from the API test suite.
69* The test that created it is called
70* testMailerGroupSubscribeGivenContactId
71* and can be found in
69d79249 72* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MailingGroupTest.php
6a488035
TO
73*
74* You can see the outcome of the API tests at
69d79249 75* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
76*
77* To Learn about the API read
69d79249 78* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 79*
69d79249
E
80* Browse the api on your own site with the api explorer
81* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
82*
83* Read more about testing here
84* http://wiki.civicrm.org/confluence/display/CRM/Testing
85*
86* API Standards documentation:
87* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 88*/