commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Campaign / Form / Survey.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
31 * @copyright CiviCRM LLC (c) 2004-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for processing a survey
38 *
39 */
40 class CRM_Campaign_Form_Survey extends CRM_Core_Form {
41
42 /**
43 * The id of the object being edited.
44 *
45 * @var int
46 */
47 protected $_surveyId;
48
49 /**
50 * Action.
51 *
52 * @var int
53 */
54 protected $_action;
55
56 /**
57 * SurveyTitle.
58 *
59 * @var string
60 */
61 protected $_surveyTitle;
62
63 public function preProcess() {
64 if (!CRM_Campaign_BAO_Campaign::accessCampaign()) {
65 CRM_Utils_System::permissionDenied();
66 }
67
68 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'add', 'REQUEST');
69 $this->_surveyId = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
70
71 if ($this->_surveyId) {
72 $this->_single = TRUE;
73
74 $params = array('id' => $this->_surveyId);
75 CRM_Campaign_BAO_Survey::retrieve($params, $surveyInfo);
76 $this->_surveyTitle = $surveyInfo['title'];
77 $this->assign('surveyTitle', $this->_surveyTitle);
78 CRM_Utils_System::setTitle(ts('Configure Survey - %1', array(1 => $this->_surveyTitle)));
79 }
80
81 $this->assign('action', $this->_action);
82 $this->assign('surveyId', $this->_surveyId);
83
84 // CRM-11480, CRM-11682
85 // Preload libraries required by the "Questions" tab
86 CRM_UF_Page_ProfileEditor::registerProfileScripts();
87 CRM_UF_Page_ProfileEditor::registerSchemas(array('IndividualModel', 'ActivityModel'));
88
89 CRM_Campaign_Form_Survey_TabHeader::build($this);
90 }
91
92 /**
93 * Build the form object.
94 *
95 * @return void
96 */
97 public function buildQuickForm() {
98 $session = CRM_Core_Session::singleton();
99 if ($this->_surveyId) {
100 $buttons = array(
101 array(
102 'type' => 'upload',
103 'name' => ts('Save'),
104 'isDefault' => TRUE,
105 ),
106 array(
107 'type' => 'upload',
108 'name' => ts('Save and Done'),
109 'subName' => 'done',
110 ),
111 array(
112 'type' => 'upload',
113 'name' => ts('Save and Next'),
114 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
115 'subName' => 'next',
116 ),
117 );
118 }
119 else {
120 $buttons = array(
121 array(
122 'type' => 'upload',
123 'name' => ts('Continue'),
124 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
125 'isDefault' => TRUE,
126 ),
127 );
128 }
129 $buttons[] = array(
130 'type' => 'cancel',
131 'name' => ts('Cancel'),
132 );
133 $this->addButtons($buttons);
134
135 $url = CRM_Utils_System::url('civicrm/campaign', 'reset=1&subPage=survey');
136 $session->replaceUserContext($url);
137 }
138
139 public function endPostProcess() {
140 // make submit buttons keep the current working tab opened.
141 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD)) {
142 $tabTitle = $className = CRM_Utils_String::getClassName($this->_name);
143 if ($tabTitle == 'Main') {
144 $tabTitle = 'Main settings';
145 }
146 $subPage = strtolower($className);
147 CRM_Core_Session::setStatus(ts("'%1' have been saved.", array(1 => $tabTitle)), ts('Saved'), 'success');
148
149 $this->postProcessHook();
150
151 if ($this->_action & CRM_Core_Action::ADD) {
152 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/survey/configure/questions",
153 "action=update&reset=1&id={$this->_surveyId}"));
154 }
155 if ($this->controller->getButtonName('submit') == "_qf_{$className}_upload_done") {
156 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/campaign', 'reset=1&subPage=survey'));
157 }
158 elseif ($this->controller->getButtonName('submit') == "_qf_{$className}_upload_next") {
159 $subPage = CRM_Campaign_Form_Survey_TabHeader::getNextTab($this);
160 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/survey/configure/{$subPage}",
161 "action=update&reset=1&id={$this->_surveyId}"));
162 }
163 else {
164 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/survey/configure/{$subPage}",
165 "action=update&reset=1&id={$this->_surveyId}"));
166 }
167 }
168 }
169
170 /**
171 * @return string
172 */
173 public function getTemplateFileName() {
174 if ($this->controller->getPrint() || $this->getVar('_surveyId') <= 0) {
175 return parent::getTemplateFileName();
176 }
177 else {
178 // hack lets suppress the form rendering for now
179 self::$_template->assign('isForm', FALSE);
180 return 'CRM/Campaign/Form/Survey/Tab.tpl';
181 }
182 }
183
184 }