Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-02-02-18-36-16
[civicrm-core.git] / api / v3 / SurveyRespondant.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright Tech To The People (c) 2010 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * File for the CiviCRM APIv3 Survey Respondant functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_Survey
33 */
34
35 /**
36 * @deprecated api notice
37 * @return string
38 * to indicate this entire api entity is deprecated
39 */
40 function _civicrm_api3_survey_respondant_deprecation() {
41 return 'The survey_respondant api is not currently supported.';
42 }
43
44 /**
45 * Get the list of signatories
46 * @deprecated - api currently not supported
47 * @param array $params
48 * (reference ) input parameters.
49 *
50 * @return array
51 */
52 function civicrm_api3_survey_respondant_get(&$params) {
53
54 civicrm_api3_verify_one_mandatory($params, NULL, array('survey_id', 'id'));
55
56 if (array_key_exists('survey_id', $params)) {
57 $surveyID = $params['survey_id'];
58 }
59 else {
60 $surveyID = $params['id'];
61 }
62
63 $interviewerID = NULL;
64 if (array_key_exists('interviewer_id', $params)) {
65 $interviewerID = $params['interviewer_id'];
66 }
67
68 $statusIds = array();
69 if (array_key_exists('status_id', $params)) {
70 $statusIds = explode(',', $params['status_id']);
71 }
72
73 $respondants = CRM_Campaign_BAO_Survey::getSurveyActivities($surveyID, $interviewerID, $statusIds);
74
75 return (civicrm_api3_create_success($respondants, $params));
76 }
77
78 /**
79 * @deprecated - api currently not supported
80 * @param array $params
81 * @return array
82 */
83 function &civicrm_api3_survey_respondant_count($params) {
84
85 $petition = new CRM_Campaign_BAO_Petition();
86 if (array_key_exists('groupby', $params) &&
87 $params['groupby'] == 'country'
88 ) {
89 $signaturesCount = $petition->getPetitionSignatureTotalbyCountry($params['survey_id']);
90 }
91 else {
92 $signaturesCount = $petition->getPetitionSignatureTotal($params['survey_id']);
93 }
94 return ($signaturesCount);
95 }