CRM-15168 fix setting api metadata titles
authorEileen McNaughton <eileen@fuzion.co.nz>
Mon, 25 Aug 2014 01:35:20 +0000 (13:35 +1200)
committerEileen McNaughton <eileen@fuzion.co.nz>
Mon, 25 Aug 2014 01:35:20 +0000 (13:35 +1200)
api/v3/Setting.php

index 77a39489ad2b69cb8ccbf4556cb8c4c96a23fdc5..125fb18fb7b6bba532e35406aea8f8b56b41b1b9 100644 (file)
@@ -114,9 +114,10 @@ function civicrm_api3_setting_getdefaults(&$params){
  */
 function _civicrm_api3_setting_getdefaults_spec(&$params) {
   $params['domain_id'] = array(
-      'api.default' => 'current_domain',
-      'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
-       an array or "all" are acceptable values for multiple domains'
+    'api.default' => 'current_domain',
+    'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
+      an array or "all" are acceptable values for multiple domains',
+    'title' => 'Setting Domain',
   );
 }
 
@@ -151,7 +152,8 @@ function _civicrm_api3_setting_revert_spec(&$params) {
   $params['domain_id'] = array(
     'api.default' => 'current_domain',
     'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
-       an array or "all" are acceptable values for multiple domains'
+      an array or "all" are acceptable values for multiple domains',
+    'title' => 'Setting Domain',
   );
 }
 
@@ -183,9 +185,10 @@ function _civicrm_api3_setting_fill_spec(&$params) {
   $params['name'] = array('title' => 'Setting Name belongs to');
   $params['component_id'] = array('title' => 'id of relevant component');
   $params['domain_id'] = array(
-      'api.default' => 'current_domain',
-      'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
-       an array or "all" are acceptable values for multiple domains'
+    'api.default' => 'current_domain',
+    'title' => 'Setting Domain',
+    'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
+      an array or "all" are acceptable values for multiple domains'
   );
 }
 
@@ -214,10 +217,12 @@ function civicrm_api3_setting_create($params) {
 function _civicrm_api3_setting_create_spec(&$params) {
   $params['domain_id'] = array(
     'api.default' => 'current_domain',
+    'title' => 'Setting Domain',
     'description' => 'if you do not pass in a domain id this will default to the current domain
       an array or "all" are acceptable values for multiple domains'
    );
    $params['group'] = array(
+     'title' => 'Setting Group',
      'description' => 'if you know the group defining it will make the api more efficient'
    )
   ;
@@ -245,11 +250,13 @@ function civicrm_api3_setting_get($params) {
  */
 function _civicrm_api3_setting_get_spec(&$params) {
   $params['domain_id'] = array(
-      'api.default' => 'current_domain',
-      'description' => 'if you do not pass in a domain id this will default to the current domain'
+    'api.default' => 'current_domain',
+    'title' => 'Setting Domain',
+    'description' => 'if you do not pass in a domain id this will default to the current domain'
   );
   $params['group'] = array(
-      'description' => 'if you know the group defining it will make the api more efficient'
+    'title' => 'Setting Group',
+    'description' => 'if you know the group defining it will make the api more efficient'
   )
   ;
 }
@@ -304,7 +311,8 @@ function _civicrm_api3_setting_getvalue_spec(&$params) {
       'title' => 'Contact Id',
   );
   $params['domain_id'] = array(
-      'description' => 'if you do not pass in a domain id this will default to the current domain'
+    'title' => 'Setting Domain',
+    'description' => 'if you do not pass in a domain id this will default to the current domain'
   );
 }