Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-07-14-22-39-05
[civicrm-core.git] / api / v3 / LocationType.php
index 3a31c319d93063925ea870154237eee405c2f30e..ddf9a120c5fd2474fc55398c0b2cff6f257412ca 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 
 /*
  +--------------------------------------------------------------------+
@@ -48,7 +47,6 @@
  * {@getfields email_create}
  * @access public
  */
-
 function civicrm_api3_location_type_create($params) {
   //set display_name equal to name if it's not defined
   if (!array_key_exists('display_name', $params) && array_key_exists('name', $params)) {
@@ -58,13 +56,12 @@ function civicrm_api3_location_type_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
-/*
+/**
  * Adjust Metadata for Create action
  *
  * The metadata is used for setting defaults, documentation & validation
  * @param array $params array or parameters determined by getfields
  */
-
 function _civicrm_api3_location_type_create_spec(&$params) {
   $params['is_active']['api.default'] = 1;
   $params['name']['api.required'] = 1;
@@ -81,7 +78,6 @@ function _civicrm_api3_location_type_create_spec(&$params) {
  * {@getfields LocationType_delete}
  * @access public
  */
-
 function civicrm_api3_location_type_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
@@ -100,9 +96,7 @@ function civicrm_api3_location_type_delete($params) {
  * {@getfields LocationType_get}
  * @access public
  */
-
 function civicrm_api3_location_type_get($params) {
-
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }