Merge pull request #16392 from jaapjansma/dev_1522_tests
[civicrm-core.git] / api / v3 / RecurringEntity.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * This api exposes CiviCRM recurring entity records.
14 *
15 * @package CiviCRM_APIv3
16 */
17
18 /**
19 * Retrieve a recurring entity.
20 *
21 * @param array $params
22 * Input parameters.
23 *
24 * @return array
25 */
26 function civicrm_api3_recurring_entity_get($params) {
27 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
28 }
29
30 /**
31 * Adjust Metadata for Get action.
32 *
33 * The metadata is used for setting defaults, documentation & validation.
34 *
35 * @param array $params
36 * Array of parameters determined by getfields.
37 */
38 function _civicrm_api3_recurring_entity_get_spec(&$params) {
39 $params['entity_table']['options'] = [
40 'civicrm_event' => 'civicrm_event',
41 'civicrm_activity' => 'civicrm_activity',
42 ];
43 }
44
45 /**
46 * Add or update a recurring entity.
47 *
48 * @param array $params
49 *
50 * @return array
51 */
52 function civicrm_api3_recurring_entity_create($params) {
53 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'RecurringEntity');
54 }
55
56 /**
57 * Adjust Metadata for Create action.
58 *
59 * The metadata is used for setting defaults, documentation & validation.
60 *
61 * @param array $params
62 * Array of parameters determined by getfields.
63 */
64 function _civicrm_api3_recurring_entity_create_spec(&$params) {
65 $params['entity_table']['options'] = [
66 'civicrm_event' => 'civicrm_event',
67 'civicrm_activity' => 'civicrm_activity',
68 ];
69 $params['entity_table']['api.required'] = 1;
70 }
71
72 /**
73 * Deletes an existing ReportInstance.
74 *
75 * @param array $params
76 *
77 * @return array
78 */
79 function civicrm_api3_recurring_entity_delete($params) {
80 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
81 }