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