INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / Country.php
1 <?php
2 // $Id$
3
4 /*
5 +--------------------------------------------------------------------+
6 | CiviCRM version 4.6 |
7 +--------------------------------------------------------------------+
8 | Copyright CiviCRM LLC (c) 2004-2014 |
9 +--------------------------------------------------------------------+
10 | This file is a part of CiviCRM. |
11 | |
12 | CiviCRM is free software; you can copy, modify, and distribute it |
13 | under the terms of the GNU Affero General Public License |
14 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
15 | |
16 | CiviCRM is distributed in the hope that it will be useful, but |
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
19 | See the GNU Affero General Public License for more details. |
20 | |
21 | You should have received a copy of the GNU Affero General Public |
22 | License and the CiviCRM Licensing Exception along |
23 | with this program; if not, contact CiviCRM LLC |
24 | at info[AT]civicrm[DOT]org. If you have questions about the |
25 | GNU Affero General Public License or the licensing of CiviCRM, |
26 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
27 +--------------------------------------------------------------------+
28 */
29
30 /**
31 * File for the CiviCRM APIv3 country functions
32 *
33 * @package CiviCRM_APIv3
34 * @subpackage API_Country
35 *
36 * @copyright CiviCRM LLC (c) 2004-2014
37 * @version $Id: Country.php 2011-02-16 ErikHommel $
38 */
39
40 require_once 'CRM/Core/DAO/Country.php';
41
42 /**
43 * Add an Country for a contact
44 *
45 * Allowed @params array keys are:
46 *
47 * @example CountryCreate.php Standard Create Example
48 *
49 * @param array $params
50 * @return array
51 * API result array
52 * @throws \API_Exception
53 */
54 function civicrm_api3_country_create($params) {
55 return _civicrm_api3_basic_create(_civicrm_api3_get_DAO(__FUNCTION__), $params);
56 }
57
58 /**
59 * Adjust Metadata for Create action
60 *
61 * The metadata is used for setting defaults, documentation & validation
62 * @param array $params
63 * Array or parameters determined by getfields.
64 */
65 function _civicrm_api3_country_create_spec(&$params) {
66 $params['name']['api.required'] = 1;
67 }
68
69 /**
70 * Deletes an existing Country
71 *
72 * @param array $params
73 *
74 * @example CountryDelete.php Standard Delete Example
75 *
76 * @return boolean
77 * | error true if successfull, error otherwise
78 * {@getfields country_delete}
79 */
80 function civicrm_api3_country_delete($params) {
81 return _civicrm_api3_basic_delete(_civicrm_api3_get_DAO(__FUNCTION__), $params);
82 }
83
84 /**
85 * Retrieve one or more countrys
86 *
87 * @param array input parameters
88 *
89 *
90 * @example CountryGet.php Standard Get Example
91 *
92 * @param array $params
93 * An associative array of name/value pairs.
94 *
95 * @return array
96 * api result array
97 * {@getfields country_get}
98 */
99 function civicrm_api3_country_get($params) {
100
101 return _civicrm_api3_basic_get(_civicrm_api3_get_DAO(__FUNCTION__), $params);
102 }