Merge pull request #15830 from eileenmcnaughton/dedupe4
[civicrm-core.git] / api / v3 / Website.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 website records.
14 *
15 * @package CiviCRM_APIv3
16 */
17
18 /**
19 * Add an Website for a contact.
20 *
21 * @param array $params
22 *
23 * @return array
24 * API result array
25 */
26 function civicrm_api3_website_create($params) {
27 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Website');
28 }
29
30 /**
31 * Adjust Metadata for Create 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_website_create_spec(&$params) {
39 $params['contact_id']['api.required'] = 1;
40 }
41
42 /**
43 * Deletes an existing Website.
44 *
45 * @param array $params
46 *
47 * @return array
48 * API result array
49 * @throws \API_Exception
50 */
51 function civicrm_api3_website_delete($params) {
52 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
53 }
54
55 /**
56 * Retrieve one or more websites.
57 *
58 * @param array $params
59 *
60 * @return array
61 * API result array
62 */
63 function civicrm_api3_website_get($params) {
64 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'Website');
65 }