Merge branch 4.5 into master
[civicrm-core.git] / api / v3 / Participant.php
index 790b3d16f09c25bdd66dce741242b36f2d0315bb..52893a6f03512508f95a43bd7e23876787ecbe94 100644 (file)
@@ -51,7 +51,8 @@
  * @param array $params
  *   An associative array of name/value property values of civicrm_participant.
  *
- * @return array apiresult
+ * @return array
+   *   apiresult
  * {@getfields participant_create}
  * @access public
  */
@@ -64,7 +65,7 @@ function civicrm_api3_participant_create($params) {
     }
   }
 
-  $value = array();
+  $values = $participant = array();
   _civicrm_api3_custom_format_params($params, $values, 'Participant');
   $params = array_merge($values, $params);
 
@@ -79,6 +80,7 @@ function civicrm_api3_participant_create($params) {
 }
 
 /**
+ * @todo this should be done in the BAO not the api
  * Create a default participant line item
  */
 function _civicrm_api3_participant_createlineitem(&$params, $participant) {
@@ -119,7 +121,7 @@ function _civicrm_api3_participant_createlineitem(&$params, $participant) {
 
     $dao = CRM_Core_DAO::executeQuery($sql, $qParams);
     if ($dao->fetch()) {
-      $lineItemparams = array(
+      $lineItemParams = array(
         'price_field_id' => $dao->priceFieldID,
         'price_field_value_id' => $dao->priceFieldValueID,
         'entity_table' => 'civicrm_participant',
@@ -129,9 +131,8 @@ function _civicrm_api3_participant_createlineitem(&$params, $participant) {
         'participant_count' => 0,
         'unit_price' => $dao->amount,
         'line_total' => $qty * $dao->amount,
-        'version' => 3,
       );
-      civicrm_api('line_item', 'create', $lineItemparams);
+      civicrm_api3('line_item', 'create', $lineItemParams);
     }
 
   }
@@ -163,7 +164,8 @@ function _civicrm_api3_participant_create_spec(&$params) {
  * @param array $params
  *   (reference ) input parameters.
  *
- * @return array (reference )        array of properties, if error an array with an error id and error message
+ * @return array
+   *   (reference )        array of properties, if error an array with an error id and error message
  * {@getfields participant_get}
  * @access public
  */