Merge pull request #4360 from christianwach/wordpress-hooks
[civicrm-core.git] / CRM / Campaign / Form / Survey.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
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 * @param null
96 *
97 * @return void
98 * @access public
99 */
100 public function buildQuickForm() {
101 $session = CRM_Core_Session::singleton();
102 if ($this->_surveyId) {
103 $buttons = array(
104 array(
105 'type' => 'upload',
106 'name' => ts('Save'),
107 'isDefault' => TRUE,
108 ),
109 array(
110 'type' => 'upload',
111 'name' => ts('Save and Done'),
112 'subName' => 'done',
113 ),
114 array(
115 'type' => 'upload',
116 'name' => ts('Save and Next'),
117 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
118 'subName' => 'next',
119 ),
120 );
121 }
122 else {
123 $buttons = array(
124 array(
125 'type' => 'upload',
126 'name' => ts('Continue >>'),
127 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
128 'isDefault' => TRUE,
129 ),
130 );
131 }
132 $buttons[] =
133 array(
134 'type' => 'cancel',
135 'name' => ts('Cancel'),
136 );
137 $this->addButtons($buttons);
138
139 $url = CRM_Utils_System::url('civicrm/campaign', 'reset=1&subPage=survey');
140 $session->replaceUserContext($url);
141 }
142
143 function endPostProcess() {
144 // make submit buttons keep the current working tab opened.
145 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD)) {
146 $tabTitle = $className = CRM_Utils_String::getClassName($this->_name);
147 if ($tabTitle == 'Main') {
148 $tabTitle = 'Main settings';
149 }
150 $subPage = strtolower($className);
151 CRM_Core_Session::setStatus(ts("'%1' have been saved.", array(1 => $tabTitle)), ts('Saved'), 'success');
152
153 $this->postProcessHook();
154
155 if ($this->_action & CRM_Core_Action::ADD)
156 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/survey/configure/questions",
157 "action=update&reset=1&id={$this->_surveyId}"));
158
159 if ($this->controller->getButtonName('submit') == "_qf_{$className}_upload_done") {
160 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/campaign', 'reset=1&subPage=survey'));
161 }
162 else if ($this->controller->getButtonName('submit') == "_qf_{$className}_upload_next") {
163 $subPage = CRM_Campaign_Form_Survey_TabHeader::getNextTab($this);
164 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/survey/configure/{$subPage}",
165 "action=update&reset=1&id={$this->_surveyId}"));
166 }
167 else {
168 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/survey/configure/{$subPage}",
169 "action=update&reset=1&id={$this->_surveyId}"));
170 }
171 }
172 }
173
174 /**
175 * @return string
176 */
177 function getTemplateFileName() {
178 if ($this->controller->getPrint() || $this->getVar('_surveyId') <= 0 ) {
179 return parent::getTemplateFileName();
180 }
181 else {
182 // hack lets suppress the form rendering for now
183 self::$_template->assign('isForm', FALSE);
184 return 'CRM/Campaign/Form/Survey/Tab.tpl';
185 }
186 }
187 }
188