Merge pull request #5187 from mallezie/CRM-15982
[civicrm-core.git] / api / v3 / Country.php
index d8edab351a796c8820fe5b1ce88aca25d3a9baac..fbbedb953923507c255eb22361e10e6d7f01103c 100644 (file)
@@ -1,6 +1,4 @@
 <?php
-// $Id$
-
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  */
 
 /**
- * File for the CiviCRM APIv3 country functions
+ * This api exposes CiviCRM country.
  *
  * @package CiviCRM_APIv3
- * @subpackage API_Country
- *
- * @copyright CiviCRM LLC (c) 2004-2014
- * @version $Id: Country.php 2011-02-16 ErikHommel $
  */
 
-require_once 'CRM/Core/DAO/Country.php';
-
 /**
- * Add an Country for a contact
- *
- * Allowed @params array keys are:
- *
- * @example CountryCreate.php Standard Create Example
+ * Add an Country for a contact.
  *
  * @param array $params
+ *   Array per getfields metadata.
+ *
  * @return array
  *   API result array
  * @throws \API_Exception
@@ -56,42 +46,36 @@ function civicrm_api3_country_create($params) {
 }
 
 /**
- * Adjust Metadata for Create action
+ * Adjust Metadata for Create action.
+ *
+ * The metadata is used for setting defaults, documentation & validation.
  *
- * The metadata is used for setting defaults, documentation & validation
  * @param array $params
- *   Array or parameters determined by getfields.
+ *   Array of parameters determined by getfields.
  */
 function _civicrm_api3_country_create_spec(&$params) {
   $params['name']['api.required'] = 1;
 }
 
 /**
- * Deletes an existing Country
+ * Deletes an existing Country.
  *
  * @param array $params
  *
- * @example CountryDelete.php Standard Delete Example
- *
- * @return bool
- *   | error  true if successfull, error otherwise
- *   {@getfields country_delete}
+ * @return array
  */
 function civicrm_api3_country_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_DAO(__FUNCTION__), $params);
 }
 
 /**
- * Retrieve one or more countrys
- *
- * @example CountryGet.php Standard Get Example
+ * Retrieve one or more countryies.
  *
  * @param array $params
- *   An associative array of name/value pairs.
+ *   Array per getfields metadata.
  *
  * @return array
  *   api result array
- *   {@getfields country_get}
  */
 function civicrm_api3_country_get($params) {