Merge pull request #6704 from monishdeb/46-test-fix
[civicrm-core.git] / api / v3 / OptionValue.php
index 76fee5dd2182eaec23ddb9f1532415a699dc6e28..47d54d7b777fabbcae198cad69d0dc67e11dd9dd 100644 (file)
@@ -1,17 +1,45 @@
 <?php
+/*
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.6                                                |
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
+ +--------------------------------------------------------------------+
+ | This file is a part of CiviCRM.                                    |
+ |                                                                    |
+ | CiviCRM is free software; you can copy, modify, and distribute it  |
+ | under the terms of the GNU Affero General Public License           |
+ | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
+ |                                                                    |
+ | CiviCRM is distributed in the hope that it will be useful, but     |
+ | WITHOUT ANY WARRANTY; without even the implied warranty of         |
+ | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
+ | See the GNU Affero General Public License for more details.        |
+ |                                                                    |
+ | You should have received a copy of the GNU Affero General Public   |
+ | License and the CiviCRM Licensing Exception along                  |
+ | with this program; if not, contact CiviCRM LLC                     |
+ | at info[AT]civicrm[DOT]org. If you have questions about the        |
+ | GNU Affero General Public License or the licensing of CiviCRM,     |
+ | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ +--------------------------------------------------------------------+
+ */
 
 /**
- * Retrieve one or more OptionValues
+ * This api exposes CiviCRM option values.
  *
- * @param array $params
+ * Values are grouped by "OptionGroup"
  *
- * {@example OptionValueGet.php 0}
- * @example OptionValueGet.php
+ * @package CiviCRM_APIv3
+ */
+
+/**
+ * Retrieve one or more option values.
+ *
+ * @param array $params
  *
  * @return array
-   *   details of found Option Values
- * {@getfields OptionValue_get}
- * @access public
+ *   Details of found Option Values
  */
 function civicrm_api3_option_value_get($params) {
 
@@ -28,19 +56,12 @@ function civicrm_api3_option_value_get($params) {
 }
 
 /**
- *  Add a OptionValue. OptionValues are used to classify CRM entities (including Contacts, Groups and Actions).
- *
- * Allowed @params array keys are:
- *
- * {@example OptionValueCreate.php}
+ * Add an OptionValue.
  *
  * @param array $params
  *
  * @throws API_Exception
  * @return array
-   *   of newly created option_value property values.
- * {@getfields OptionValue_create}
- * @access public
  */
 function civicrm_api3_option_value_create($params) {
   $result = _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -58,34 +79,31 @@ function civicrm_api3_option_value_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_option_value_create_spec(&$params) {
   $params['is_active']['api.default'] = 1;
   //continue to support component
   $params['component_id']['api.aliases'] = array('component');
-  $params['name']['api.aliases'] = array('label');
+  //  $params['name']['api.aliases'] = array('label');
   $params['option_group_id']['api.required'] = TRUE;
 }
 
 /**
- * Deletes an existing OptionValue
+ * Deletes an existing option value.
  *
  * @param array $params
  *
- * {@example OptionValueDelete.php 0}
- *
  * @return array
-   *   Api result
- * {@getfields OptionValue_create}
- * @access public
+ *   Api result
  */
 function civicrm_api3_option_value_delete($params) {
-  // we will get the option group id before deleting so we can flush pseudoconstants
+  // We will get the option group id before deleting so we can flush pseudoconstants.
   $optionGroupID = civicrm_api('option_value', 'getvalue', array('version' => 3, 'id' => $params['id'], 'return' => 'option_group_id'));
   if (CRM_Core_BAO_OptionValue::del((int) $params['id'])) {
     civicrm_api('option_value', 'getfields', array('version' => 3, 'cache_clear' => 1, 'option_group_id' => $optionGroupID));