INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / ReportTemplate.php
index ac5b66239d592bd77a276596fdf3714f3818e819..17ecda8705bd3baad962987fb606a455b922c2d5 100644 (file)
@@ -10,9 +10,9 @@
  * {@example OptionValueGet.php 0}
  * @example OptionValueGet.php
  *
- * @return  array details of found Option Values
+ * @return array
+ *   details of found Option Values
  * {@getfields OptionValue_get}
- * @access public
  */
 function civicrm_api3_report_template_get($params) {
   require_once 'api/v3/OptionValue.php';
@@ -31,9 +31,9 @@ function civicrm_api3_report_template_get($params) {
  *
  * @param array $params
  *
- * @return array of newly created option_value property values.
+ * @return array
+ *   Array of newly created option_value property values.
  * {@getfields OptionValue_create}
- * @access public
  */
 function civicrm_api3_report_template_create($params) {
   require_once 'api/v3/OptionValue.php';
@@ -72,9 +72,9 @@ function _civicrm_api3_report_template_create_spec(&$params) {
  *
  * {@example ReportTemplateDelete.php 0}
  *
- * @return array Api result
+ * @return array
+ *   Api result
  * {@getfields ReportTemplate_create}
- * @access public
  */
 function civicrm_api3_report_template_delete($params) {
   require_once 'api/v3/OptionValue.php';
@@ -87,8 +87,8 @@ function civicrm_api3_report_template_delete($params) {
  * @param array $params
  *   Input parameters.
  *
- * @return  array details of found instances
- * @access public
+ * @return array
+ *   details of found instances
  */
 function civicrm_api3_report_template_getrows($params) {
   civicrm_api3_verify_one_mandatory($params, NULL, array('report_id', 'instance_id'));
@@ -109,7 +109,7 @@ function _civicrm_api3_report_template_getrows($params) {
   }
 
   $class = civicrm_api3('option_value', 'getvalue', array(
-    'option_group_id' => 'report_template',
+    'option_group_name' => 'report_template',
     'return' => 'name',
     'value' => $params['report_id'],
     )
@@ -164,8 +164,8 @@ function civicrm_api3_report_template_getstatistics($params) {
  * @param array $params
  *   Input parameters.
  *
- * @return  array details of found instances
- * @access public
+ * @return array
+ *   details of found instances
  */
 function _civicrm_api3_report_template_getrows_spec(&$params) {
   $params['report_id'] = array(