X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FSystem.php;h=5a7e1d95a770c4698fe380a051239679284e916f;hb=5f53b1c171d164470d6bbf6002841cdd17c55912;hp=6e93f476209fb4c36a8a42449fa3f81bd19043ce;hpb=1219e6af26646ad548b2d7e97a7f345af4655c21;p=civicrm-core.git diff --git a/api/v3/System.php b/api/v3/System.php index 6e93f47620..5a7e1d95a7 100644 --- a/api/v3/System.php +++ b/api/v3/System.php @@ -40,12 +40,14 @@ /** * Flush all system caches * - * @param array $params input parameters + * @param array $params + * Input parameters. * - triggers: bool, whether to drop/create SQL triggers; default: FALSE * - session: bool, whether to reset the CiviCRM session data; defaul: FALSE * - * @return boolean true if success, else false - * @static void + * @return boolean + * true if success, else false + * @static * @access public * @example SystemFlush.php * @@ -62,9 +64,10 @@ function civicrm_api3_system_flush($params) { * Adjust Metadata for Flush action * * The metadata is used for setting defaults, documentation & validation - * @param array $params array or parameters determined by getfields + * @param array $params + * Array or parameters determined by getfields. */ -function _civicrm_api3_system_flush_spec(&$params){ +function _civicrm_api3_system_flush_spec(&$params) { $params['triggers'] = array('title' => 'rebuild triggers (boolean)'); $params['session'] = array('title' => 'refresh sessions (boolean)'); } @@ -73,7 +76,8 @@ function _civicrm_api3_system_flush_spec(&$params){ * System.Check API specification (optional) * This is used for documentation and validation. * - * @param array $spec description of fields supported by this API call + * @param array $spec + * Description of fields supported by this API call. * @return void * @see http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards */ @@ -85,7 +89,8 @@ function _civicrm_api3_system_check_spec(&$spec) { * System.Check API * * @param array $params - * @return array API result descriptor; return items are alert codes/messages + * @return array + * API result descriptor; return items are alert codes/messages * @see civicrm_api3_create_success * @see civicrm_api3_create_error * @throws API_Exception @@ -109,12 +114,12 @@ function civicrm_api3_system_log($params) { $log = new CRM_Utils_SystemLogger(); // this part means fields with separate db storage are accepted as params which kind of seems more intuitive to me // because I felt like not doing this required a bunch of explanation in the spec function - but perhaps other won't see it as helpful? - if(!isset($params['context'])) { + if (!isset($params['context'])) { $params['context'] = array(); } $specialFields = array('contact_id', 'hostname'); - foreach($specialFields as $specialField) { - if(isset($params[$specialField]) && !isset($params['context'])) { + foreach ($specialFields as $specialField) { + if (isset($params[$specialField]) && !isset($params['context'])) { $params['context'][$specialField] = $params[$specialField]; } } @@ -171,4 +176,3 @@ function civicrm_api3_system_get($params) { ); return civicrm_api3_create_success($returnValues, $params, 'System', 'get'); } -