CRM-14181, more clean and fixes to support callback
[civicrm-core.git] / CRM / Mailing / Form / Settings.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This file is used to build the form configuring mailing details
38 */
39class CRM_Mailing_Form_Settings extends CRM_Core_Form {
40
41 /**
42 * Function to set variables up before form is built
43 *
44 * @return void
45 * @access public
46 */
47 public function preProcess() {
48 //when user come from search context.
49 $ssID = $this->get('ssID');
50 $this->assign('ssid',$ssID);
51 $this->_searchBasedMailing = CRM_Contact_Form_Search::isSearchContext($this->get('context'));
52 if(CRM_Contact_Form_Search::isSearchContext($this->get('context')) && !$ssID){
53 $params = array();
54 $result = CRM_Core_BAO_PrevNextCache::getSelectedContacts();
55 $this->assign("value", $result);
56 }
57 }
58
59 /**
60 * This function sets the default values for the form.
61 * the default values are retrieved from the database
62 *
63 * @access public
64 *
355ba699 65 * @return void
6a488035
TO
66 */
67 function setDefaultValues() {
68 $mailingID = CRM_Utils_Request::retrieve('mid', 'Integer', $this, FALSE, NULL);
69 $count = $this->get('count');
70 $this->assign('count', $count);
71 $defaults = array();
72
73 $componentFields = array(
74 'reply_id' => 'Reply',
75 'optout_id' => 'OptOut',
76 'unsubscribe_id' => 'Unsubscribe',
77 'resubscribe_id' => 'Resubscribe',
78 );
79
80 foreach ($componentFields as $componentVar => $componentType) {
81 $defaults[$componentVar] = CRM_Mailing_PseudoConstant::defaultComponent($componentType, '');
82 }
83
84 if ($mailingID) {
85 $dao = new CRM_Mailing_DAO_Mailing();
86 $dao->id = $mailingID;
87 $dao->find(TRUE);
88 // override_verp must be flipped, as in 3.2 we reverted
89 // its meaning to ‘should CiviMail manage replies?’ – i.e.,
90 // ‘should it *not* override Reply-To: with VERP-ed address?’
91 $dao->override_verp = !$dao->override_verp;
92 $dao->storeValues($dao, $defaults);
93 $defaults['visibility'] = $dao->visibility;
94 }
95 return $defaults;
96 }
97
98 /**
99 * Function to actually build the form
100 *
355ba699 101 * @return void
6a488035
TO
102 * @access public
103 */
104 public function buildQuickForm() {
105
106 $this->addElement('checkbox', 'override_verp', ts('Track Replies?'));
107
108 $defaults['override_verp'] = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
109 'track_civimail_replies', NULL, FALSE
110 );
111
112 $this->add('checkbox', 'forward_replies', ts('Forward Replies?'));
113 $defaults['forward_replies'] = FALSE;
114
115 $this->add('checkbox', 'url_tracking', ts('Track Click-throughs?'));
116 $defaults['url_tracking'] = TRUE;
117
118 $this->add('checkbox', 'open_tracking', ts('Track Opens?'));
119 $defaults['open_tracking'] = TRUE;
120
121 $this->add('checkbox', 'auto_responder', ts('Auto-respond to Replies?'));
122 $defaults['auto_responder'] = FALSE;
123
93bfa565 124 $this->add('select', 'visibility', ts('Mailing Visibility'), CRM_Core_SelectValues::groupVisibility(), TRUE);
6a488035
TO
125
126 $this->add('select', 'reply_id', ts('Auto-responder'),
127 CRM_Mailing_PseudoConstant::component('Reply'), TRUE
128 );
129
130 $this->add('select', 'unsubscribe_id', ts('Unsubscribe Message'),
131 CRM_Mailing_PseudoConstant::component('Unsubscribe'), TRUE
132 );
133
134 $this->add('select', 'resubscribe_id', ts('Resubscribe Message'),
135 CRM_Mailing_PseudoConstant::component('Resubscribe'), TRUE
136 );
137
138 $this->add('select', 'optout_id', ts('Opt-out Message'),
139 CRM_Mailing_PseudoConstant::component('OptOut'), TRUE
140 );
141
142 $buttons = array(
143 array('type' => 'back',
144 'name' => ts('<< Previous'),
145 ),
146 array(
147 'type' => 'next',
148 'name' => ts('Next >>'),
149 'spacing' => '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;',
150 'isDefault' => TRUE,
151 ),
152 array(
153 'type' => 'submit',
154 'name' => ts('Save & Continue Later'),
155 ),
156 array(
157 'type' => 'cancel',
158 'name' => ts('Cancel'),
159 ),
160 );
161
162 $this->addButtons($buttons);
163
164 $this->setDefaults($defaults);
165 }
166
167 public function postProcess() {
168 $params = $ids = array();
169
170 $session = CRM_Core_Session::singleton();
171 $params['created_id'] = $session->get('userID');
172
173 $uploadParams = array('reply_id', 'unsubscribe_id', 'optout_id', 'resubscribe_id');
174 $uploadParamsBoolean = array('override_verp', 'forward_replies', 'url_tracking', 'open_tracking', 'auto_responder');
175
176 $qf_Settings_submit = $this->controller->exportValue($this->_name, '_qf_Settings_submit');
177
178 foreach ($uploadParams as $key) {
179 $params[$key] = $this->controller->exportvalue($this->_name, $key);
180 $this->set($key, $this->controller->exportvalue($this->_name, $key));
181 }
182
183 foreach ($uploadParamsBoolean as $key) {
184 if ($this->controller->exportvalue($this->_name, $key)) {
185 $params[$key] = TRUE;
186 }
187 else {
188 $params[$key] = FALSE;
189 }
190 $this->set($key, $this->controller->exportvalue($this->_name, $key));
191 }
192
193 $params['visibility'] = $this->controller->exportvalue($this->_name, 'visibility');
194
195 // override_verp must be flipped, as in 3.2 we reverted
196 // its meaning to ‘should CiviMail manage replies?’ – i.e.,
197 // ‘should it *not* override Reply-To: with VERP-ed address?’
198 $params['override_verp'] = !$params['override_verp'];
199
200 $ids['mailing_id'] = $this->get('mailing_id');
201
202 // update mailing
203 CRM_Mailing_BAO_Mailing::create($params, $ids);
204
205 if ($qf_Settings_submit) {
206 //when user perform mailing from search context
207 //redirect it to search result CRM-3711.
208 $ssID = $this->get('ssID');
209 if ($ssID && $this->_searchBasedMailing) {
210 if ($this->_action == CRM_Core_Action::BASIC) {
211 $fragment = 'search';
212 }
213 elseif ($this->_action == CRM_Core_Action::PROFILE) {
214 $fragment = 'search/builder';
215 }
216 elseif ($this->_action == CRM_Core_Action::ADVANCED) {
217 $fragment = 'search/advanced';
218 }
219 else {
220 $fragment = 'search/custom';
221 }
222
223 $context = $this->get('context');
224 if (!CRM_Contact_Form_Search::isSearchContext($context)) {
225 $context = 'search';
226 }
227 $urlParams = "force=1&reset=1&ssID={$ssID}&context={$context}";
228 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this);
229 if (CRM_Utils_Rule::qfKey($qfKey)) {
230 $urlParams .= "&qfKey=$qfKey";
231 }
232
233 $draftURL = CRM_Utils_System::url('civicrm/mailing/browse/unscheduled', 'scheduled=false&reset=1');
234 $status = ts("You can continue later by clicking the 'Continue' action to resume working on it.<br />From <a href='%1'>Draft and Unscheduled Mailings</a>.", array(1 => $draftURL));
235
236 // Redirect user to search.
237 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $urlParams);
238 }
239 else {
240 $status = ts("Click the 'Continue' action to resume working on it.");
241 $url = CRM_Utils_System::url('civicrm/mailing/browse/unscheduled', 'scheduled=false&reset=1');
242 }
243 CRM_Core_Session::setStatus($status, ts('Mailing Saved'), 'success');
244 CRM_Utils_System::redirect($url);
245 }
246 }
247
248 /**
249 * Display Name of the form
250 *
251 * @access public
252 *
253 * @return string
254 */
255 public function getTitle() {
256 return ts('Track and Respond');
257 }
258}