Merge pull request #4875 from civicrm/minor-fix
[civicrm-core.git] / api / v3 / Website.php
CommitLineData
6a488035 1<?php
6a488035
TO
2
3/*
4 +--------------------------------------------------------------------+
39de6fd5 5 | CiviCRM version 4.6 |
6a488035 6 +--------------------------------------------------------------------+
731a0992 7 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27*/
28
29/**
30 * File for the CiviCRM APIv3 website functions
31 *
32 * @package CiviCRM_APIv3
33 * @subpackage API_Website
34 *
731a0992 35 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
36 * @version $Id: Website.php 2011-03-16 ErikHommel $
37 */
38
6a488035
TO
39/**
40 * Add an Website for a contact
41 *
42 * Allowed @params array keys are:
43 * {@getfields website_create}
44 * @example WebsiteCreate.php
45 * {@example WebsiteCreate.php}
46 *
c490a46a 47 * @param array $params
77b97be7 48 *
a6c01b45 49 * @return array
72b3a70c 50 * of newly created website property values.
6a488035
TO
51 * @access public
52 * @todo convert to using basic create - BAO function non-std
53 */
54function civicrm_api3_website_create($params) {
55 //DO NOT USE THIS FUNCTION AS THE BASIS FOR A NEW API http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
56
57 $websiteBAO = CRM_Core_BAO_Website::add($params);
35671d00
TO
58 $values = array();
59 _civicrm_api3_object_to_array($websiteBAO, $values[$websiteBAO->id]);
60 return civicrm_api3_create_success($values, $params, 'website', 'get');
11e09c59 61}
6a488035 62
11e09c59 63/**
6a488035
TO
64 * Adjust Metadata for Create action
65 *
66 * The metadata is used for setting defaults, documentation & validation
cf470720
TO
67 * @param array $params
68 * Array or parameters determined by getfields.
6a488035
TO
69 */
70function _civicrm_api3_website_create_spec(&$params) {
71 $params['contact_id']['api.required'] = 1;
72}
73
74/**
75 * Deletes an existing Website
76 *
cf470720 77 * @param array $params
6a488035
TO
78 * {@getfields website_delete}
79 * @example WebsiteDelete.php Std Delete Example
80 *
a6c01b45 81 * @return array
72b3a70c 82 * API result Array
6a488035
TO
83 * @access public
84 * @todo convert to using Basic delete - BAO function non standard
85 */
86function civicrm_api3_website_delete($params) {
87 //DO NOT USE THIS FUNCTION AS THE BASIS FOR A NEW API http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
88 $websiteID = CRM_Utils_Array::value('id', $params);
89
90 $websiteDAO = new CRM_Core_DAO_Website();
91 $websiteDAO->id = $websiteID;
92 if ($websiteDAO->find()) {
93 while ($websiteDAO->fetch()) {
94 $websiteDAO->delete();
95 return civicrm_api3_create_success(1, $params, 'website', 'delete');
96 }
97 }
98 else {
99 return civicrm_api3_create_error('Could not delete website with id ' . $websiteID);
100 }
101}
102
103/**
104 * Retrieve one or more websites
105 *
cf470720 106 * @param mixed[] (reference ) input parameters
6a488035
TO
107 * {@getfields website_get}
108 * {@example WebsiteGet.php 0}
109 * @example WebsiteGet.php
cf470720
TO
110 * @param array $params
111 * An associative array of name/value pairs.
6a488035 112 *
a6c01b45 113 * @return array
72b3a70c 114 * details of found websites
6a488035
TO
115 *
116 * @access public
117 */
118function civicrm_api3_website_get($params) {
dc5a7701 119 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'website');
6a488035 120}