X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FSurvey.php;h=bc12a4502f25f3f2df12dc74134ce02823b420e0;hb=048555566c0b1535f8e8cc802b0991399503319c;hp=fb275ccac77d716d823dac50f22068d6ee0ec922;hpb=ec9bb041d5407d659b30d3ecd00b5db60d71ad52;p=civicrm-core.git diff --git a/api/v3/Survey.php b/api/v3/Survey.php index fb275ccac7..bc12a4502f 100644 --- a/api/v3/Survey.php +++ b/api/v3/Survey.php @@ -2,9 +2,9 @@ /* +--------------------------------------------------------------------+ - | CiviCRM version 4.4 | + | CiviCRM version 4.6 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2013 | + | Copyright CiviCRM LLC (c) 2004-2014 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -31,7 +31,7 @@ * * @package CiviCRM_APIv3 * @subpackage API_Survey - * @copyright CiviCRM LLC (c) 2004-2013 + * @copyright CiviCRM LLC (c) 2004-2014 */ @@ -47,7 +47,7 @@ * @access public */ function civicrm_api3_survey_create($params) { - return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params); + return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Survey'); } /** @@ -63,16 +63,16 @@ function _civicrm_api3_survey_create_spec(&$params) { /** * Returns array of surveys matching a set of one or more group properties * - * @param array $params (referance) Array of one or more valid + * @param array $params Array of one or more valid * property_name=>value pairs. If $params is set * as null, all surveys will be returned * - * @return array (referance) Array of matching surveys + * @return array API result Array of matching surveys * {@getfields survey_get} * @access public */ function civicrm_api3_survey_get($params) { - return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); + return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'Survey'); } /** @@ -81,11 +81,10 @@ function civicrm_api3_survey_get($params) { * This method is used to delete any existing survey. id of the group * to be deleted is required field in $params array * - * @param array $params (reference) array containing id of the group + * @param array $params array containing id of the group * to be deleted * - * @return array (referance) returns flag true if successfull, error - * message otherwise + * @return array api result array * {@getfields survey_delete} * @access public */