INFRA-132 - Civi - PHPStorm cleanup
[civicrm-core.git] / CRM / Campaign / Page / Vote.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 --------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Page for voting tab interface.
38 */
39class CRM_Campaign_Page_Vote extends CRM_Core_Page {
40 private $_surveyId;
41 private $_interviewerId;
8ef12e64 42
30c4e065
EM
43 /**
44 * @return mixed
45 */
00be9182 46 public function reserve() {
6a488035
TO
47 //build ajax voter search and selector.
48 $controller = new CRM_Core_Controller_Simple('CRM_Campaign_Form_Gotv', ts('Reserve Respondents'));
49 $controller->set('votingTab', TRUE);
50 $controller->set('subVotingTab', 'searchANDReserve');
51
52 $controller->process();
53 return $controller->run();
54 }
55
e0ef6999
EM
56 /**
57 * @return mixed
58 */
00be9182 59 public function interview() {
6a488035
TO
60 //build interview and release voter interface.
61 $controller = new CRM_Core_Controller_Simple('CRM_Campaign_Form_Task_Interview', ts('Interview Respondents'));
62 $controller->set('votingTab', TRUE);
63 $controller->set('subVotingTab', 'searchANDInterview');
64 if ($this->_surveyId) {
65 $controller->set('surveyId', $this->_surveyId);
66 }
67 if ($this->_interviewerId) {
68 $controller->set('interviewerId', $this->_interviewerId);
69 }
70 $controller->process();
71 return $controller->run();
72 }
73
00be9182 74 public function browse() {
94880218
TO
75 $this->_tabs = array(
76 'reserve' => ts('Reserve Respondents'),
6a488035
TO
77 'interview' => ts('Interview Respondents'),
78 );
79
80 $this->_surveyId = CRM_Utils_Request::retrieve('sid', 'Positive', $this);
81 $this->_interviewerId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
82
83 $subPageType = CRM_Utils_Request::retrieve('type', 'String', $this);
84 if ($subPageType) {
85 $session = CRM_Core_Session::singleton();
86 $session->pushUserContext(CRM_Utils_System::url('civicrm/campaign/vote', "reset=1&subPage={$subPageType}"));
87 //load the data in tabs.
88 $this->{$subPageType}();
89 }
90 else {
91 //build the tabs.
92 $this->buildTabs();
93 }
94 $this->assign('subPageType', $subPageType);
95
4165b7e5 96 CRM_Core_Resources::singleton()
96ed17aa 97 ->addScriptFile('civicrm', 'templates/CRM/common/TabHeader.js', 1, 'html-header')
94880218
TO
98 ->addSetting(array(
99 'tabSettings' => array(
4165b7e5
CW
100 'active' => strtolower(CRM_Utils_Array::value('subPage', $_GET, 'reserve')),
101 )));
6a488035
TO
102 }
103
30c4e065
EM
104 /**
105 * @return string
106 */
00be9182 107 public function run() {
6a488035
TO
108 $this->browse();
109
110 return parent::run();
111 }
112
00be9182 113 public function buildTabs() {
6a488035
TO
114 $allTabs = array();
115 foreach ($this->_tabs as $name => $title) {
6a84d0fb
CW
116 // check for required permissions.
117 if (!CRM_Core_Permission::check(array(array('manage campaign', 'administer CiviCampaign', "{$name} campaign contacts")))) {
6a488035
TO
118 continue;
119 }
120
349a45b7 121 $urlParams = "type={$name}";
6a488035
TO
122 if ($this->_surveyId) {
123 $urlParams .= "&sid={$this->_surveyId}";
124 }
125 if ($this->_interviewerId) {
126 $urlParams .= "&cid={$this->_interviewerId}";
127 }
349a45b7 128 $allTabs[$name] = array(
6a488035 129 'title' => $title,
349a45b7
CW
130 'valid' => TRUE,
131 'active' => TRUE,
132 'link' => CRM_Utils_System::url('civicrm/campaign/vote', $urlParams),
6a488035
TO
133 );
134 }
135
349a45b7 136 $this->assign('tabHeader', empty($allTabs) ? FALSE : $allTabs);
6a488035
TO
137 }
138}