X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FWordReplacement.php;h=8ac602784a28d1f6649eeb5ffb244bcb46407b1e;hb=3b7bf9514d92a68e9adb10ae1fe33f8d6ca3da7d;hp=1398c82fa072a0d70f98cfb464b87b49087ce6ce;hpb=b7ff0a0a5544c5a5d510c685c8fdbdaecad7a5d0;p=civicrm-core.git diff --git a/api/v3/WordReplacement.php b/api/v3/WordReplacement.php index 1398c82fa0..8ac602784a 100644 --- a/api/v3/WordReplacement.php +++ b/api/v3/WordReplacement.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.6 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2014 | + | Copyright CiviCRM LLC (c) 2004-2015 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -26,9 +26,9 @@ */ /** - * This api exposes CiviCRM word replacement. + * This api exposes CiviCRM WordReplacement records. * - * Word-replacements are used to globally alter strings in the CiviCRM UI. + * Word replacements are used to globally alter strings in the CiviCRM UI. * Note that the original source string is always English, regardless of language settings. * * @package CiviCRM_APIv3 @@ -44,10 +44,10 @@ */ function civicrm_api3_word_replacement_get($params) { $bao = new CRM_Core_BAO_WordReplacement(); - _civicrm_api3_dao_set_filter($bao, $params, TRUE, 'WordReplacement'); + _civicrm_api3_dao_set_filter($bao, $params, TRUE); $wordReplacements = _civicrm_api3_dao_to_array($bao, $params, TRUE, 'WordReplacement'); - return civicrm_api3_create_success($wordReplacements, $params, 'word_replacement', 'get', $bao); + return civicrm_api3_create_success($wordReplacements, $params, 'WordReplacement', 'get', $bao); } @@ -75,10 +75,10 @@ function _civicrm_api3_word_replacement_create_spec(&$params) { } /** - * Delete an existing word_replacement. + * Delete an existing WordReplacement. * * @param array $params - * Array containing id of the word_replacement to be deleted. + * Array containing id of the WordReplacement to be deleted. * * @return array * API result array