Merge pull request #13689 from eileenmcnaughton/no_record_payment
[civicrm-core.git] / CRM / Contribute / Form / ContributionPage.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34/**
35 * Contribution Page form.
36 */
37class CRM_Contribute_Form_ContributionPage extends CRM_Core_Form {
38
39 /**
40 * The page id saved to the session for an update.
41 *
42 * @var int
43 */
44 protected $_id;
45
46 /**
47 * The pledgeBlock id saved to the session for an update.
48 *
49 * @var int
50 */
51 protected $_pledgeBlockID;
52
53 /**
54 * Are we in single form mode or wizard mode?
55 *
56 * @var boolean
57 */
58 protected $_single;
59
60 /**
61 * Is this the first page?
62 *
63 * @var boolean
64 */
65 protected $_first = FALSE;
66
67 /**
68 * Is this the last page?
69 *
70 * @var boolean
71 */
72 protected $_last = FALSE;
73
74 /**
75 * Store price set id.
76 *
77 * @var int
78 */
79 protected $_priceSetID = NULL;
80
81 protected $_values;
82
83 /**
84 * Explicitly declare the entity api name.
85 */
86 public function getDefaultEntity() {
87 return 'Contribution';
88 }
89
90 /**
91 * Set variables up before form is built.
92 */
93 public function preProcess() {
94 // current contribution page id
95 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive',
96 $this, FALSE, NULL, 'REQUEST'
97 );
98 $this->assign('contributionPageID', $this->_id);
99
100 // get the requested action
101 $this->_action = CRM_Utils_Request::retrieve('action', 'String',
102 // default to 'browse'
103 $this, FALSE, 'browse'
104 );
105
106 // setting title and 3rd level breadcrumb for html page if contrib page exists
107 if ($this->_id) {
108 $title = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $this->_id, 'title');
109
110 if ($this->_action == CRM_Core_Action::UPDATE) {
111 $this->_single = TRUE;
112 }
113 }
114
115 // CRM-16776 - show edit/copy/create buttons on Profiles Tab if user has required permission.
116 if (CRM_Core_Permission::check('administer CiviCRM')) {
117 $this->assign('perm', TRUE);
118 }
119 // set up tabs
120 CRM_Contribute_Form_ContributionPage_TabHeader::build($this);
121
122 if ($this->_action == CRM_Core_Action::UPDATE) {
123 CRM_Utils_System::setTitle(ts('Configure Page - %1', [1 => $title]));
124 }
125 elseif ($this->_action == CRM_Core_Action::VIEW) {
126 CRM_Utils_System::setTitle(ts('Preview Page - %1', [1 => $title]));
127 }
128 elseif ($this->_action == CRM_Core_Action::DELETE) {
129 CRM_Utils_System::setTitle(ts('Delete Page - %1', [1 => $title]));
130 }
131
132 //cache values.
133 $this->_values = $this->get('values');
134 if (!is_array($this->_values)) {
135 $this->_values = [];
136 if (isset($this->_id) && $this->_id) {
137 $params = ['id' => $this->_id];
138 CRM_Core_DAO::commonRetrieve('CRM_Contribute_DAO_ContributionPage', $params, $this->_values);
139 CRM_Contribute_BAO_ContributionPage::setValues($this->_id, $this->_values);
140 }
141 $this->set('values', $this->_values);
142 }
143
144 // Check permission to edit contribution page
145 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() && $this->_action & CRM_Core_Action::UPDATE) {
146 $financialTypeID = CRM_Contribute_PseudoConstant::financialType($this->_values['financial_type_id']);
147 if (!CRM_Core_Permission::check('edit contributions of type ' . $financialTypeID)) {
148 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
149 }
150 }
151
152 // Preload libraries required by the "Profiles" tab
153 $schemas = ['IndividualModel', 'OrganizationModel', 'ContributionModel'];
154 if (in_array('CiviMember', CRM_Core_Config::singleton()->enableComponents)) {
155 $schemas[] = 'MembershipModel';
156 }
157 CRM_UF_Page_ProfileEditor::registerProfileScripts();
158 CRM_UF_Page_ProfileEditor::registerSchemas($schemas);
159 }
160
161 /**
162 * Build the form object.
163 */
164 public function buildQuickForm() {
165 $this->applyFilter('__ALL__', 'trim');
166
167 $session = CRM_Core_Session::singleton();
168 $this->_cancelURL = CRM_Utils_Array::value('cancelURL', $_POST);
169
170 if (!$this->_cancelURL) {
171 $this->_cancelURL = CRM_Utils_System::url('civicrm/admin/contribute', 'reset=1');
172 }
173
174 if ($this->_cancelURL) {
175 $this->addElement('hidden', 'cancelURL', $this->_cancelURL);
176 }
177
178 if ($this->_single) {
179 $buttons = [
180 [
181 'type' => 'next',
182 'name' => ts('Save'),
183 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
184 'isDefault' => TRUE,
185 ],
186 [
187 'type' => 'upload',
188 'name' => ts('Save and Done'),
189 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
190 'subName' => 'done',
191 ],
192 ];
193 if (!$this->_last) {
194 $buttons[] = [
195 'type' => 'submit',
196 'name' => ts('Save and Next'),
197 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
198 'subName' => 'savenext',
199 ];
200 }
201 $buttons[] = [
202 'type' => 'cancel',
203 'name' => ts('Cancel'),
204 ];
205 $this->addButtons($buttons);
206 }
207 else {
208 $buttons = [];
209 if (!$this->_first) {
210 $buttons[] = [
211 'type' => 'back',
212 'name' => ts('Previous'),
213 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
214 ];
215 }
216 $buttons[] = [
217 'type' => 'next',
218 'name' => ts('Continue'),
219 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
220 'isDefault' => TRUE,
221 ];
222 $buttons[] = [
223 'type' => 'cancel',
224 'name' => ts('Cancel'),
225 ];
226
227 $this->addButtons($buttons);
228 }
229
230 $session->replaceUserContext($this->_cancelURL);
231 // views are implemented as frozen form
232 if ($this->_action & CRM_Core_Action::VIEW) {
233 $this->freeze();
234 $this->addElement('button', 'done', ts('Done'), ['onclick' => "location.href='civicrm/admin/custom/group?reset=1&action=browse'"]);
235 }
236
237 // don't show option for contribution amounts section if membership price set
238 // this flag is sent to template
239
240 $membershipBlock = new CRM_Member_DAO_MembershipBlock();
241 $membershipBlock->entity_table = 'civicrm_contribution_page';
242 $membershipBlock->entity_id = $this->_id;
243 $membershipBlock->is_active = 1;
244 $hasMembershipBlk = FALSE;
245 if ($membershipBlock->find(TRUE) &&
246 ($setID = CRM_Price_BAO_PriceSet::getFor('civicrm_contribution_page', $this->_id, NULL, 1))
247 ) {
248 $extends = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceSet', $setID, 'extends');
249 if ($extends && $extends == CRM_Core_Component::getComponentID('CiviMember')) {
250 $hasMembershipBlk = TRUE;
251 }
252 }
253 // set value in DOM that membership price set exists
254 CRM_Core_Resources::singleton()->addSetting(['memberPriceset' => $hasMembershipBlk]);
255 }
256
257 /**
258 * Set default values for the form. Note that in edit/view mode
259 * the default values are retrieved from the database
260 *
261 *
262 * @return array
263 * defaults
264 */
265 public function setDefaultValues() {
266 //some child classes calling setdefaults directly w/o preprocess.
267 $this->_values = $this->get('values');
268 if (!is_array($this->_values)) {
269 $this->_values = [];
270 if (isset($this->_id) && $this->_id) {
271 $params = ['id' => $this->_id];
272 CRM_Core_DAO::commonRetrieve('CRM_Contribute_DAO_ContributionPage', $params, $this->_values);
273 }
274 $this->set('values', $this->_values);
275 }
276 $defaults = $this->_values;
277
278 $config = CRM_Core_Config::singleton();
279 if (isset($this->_id)) {
280
281 //set defaults for pledgeBlock values.
282 $pledgeBlockParams = [
283 'entity_id' => $this->_id,
284 'entity_table' => ts('civicrm_contribution_page'),
285 ];
286 $pledgeBlockDefaults = [];
287 CRM_Pledge_BAO_PledgeBlock::retrieve($pledgeBlockParams, $pledgeBlockDefaults);
288 if ($this->_pledgeBlockID = CRM_Utils_Array::value('id', $pledgeBlockDefaults)) {
289 $defaults['is_pledge_active'] = TRUE;
290 }
291 $pledgeBlock = [
292 'is_pledge_interval',
293 'max_reminders',
294 'initial_reminder_day',
295 'additional_reminder_day',
296 'pledge_start_date',
297 'is_pledge_start_date_visible',
298 'is_pledge_start_date_editable',
299 ];
300 foreach ($pledgeBlock as $key) {
301 $defaults[$key] = CRM_Utils_Array::value($key, $pledgeBlockDefaults);
302 if ($key == 'pledge_start_date' && CRM_Utils_Array::value($key, $pledgeBlockDefaults)) {
303 $defaultPledgeDate = (array) json_decode($pledgeBlockDefaults['pledge_start_date']);
304 $pledgeDateFields = [
305 'pledge_calendar_date' => 'calendar_date',
306 'pledge_calendar_month' => 'calendar_month',
307 ];
308 $defaults['pledge_default_toggle'] = key($defaultPledgeDate);
309 foreach ($pledgeDateFields as $key => $value) {
310 if (array_key_exists($value, $defaultPledgeDate)) {
311 $defaults[$key] = reset($defaultPledgeDate);
312 $this->assign($key, reset($defaultPledgeDate));
313 }
314 }
315 }
316 }
317 if (!empty($pledgeBlockDefaults['pledge_frequency_unit'])) {
318 $defaults['pledge_frequency_unit'] = array_fill_keys(explode(CRM_Core_DAO::VALUE_SEPARATOR,
319 $pledgeBlockDefaults['pledge_frequency_unit']
320 ), '1');
321 }
322
323 // fix the display of the monetary value, CRM-4038
324 if (isset($defaults['goal_amount'])) {
325 $defaults['goal_amount'] = CRM_Utils_Money::format($defaults['goal_amount'], NULL, '%a');
326 }
327
328 // get price set of type contributions
329 //this is the value for stored in db if price set extends contribution
330 $usedFor = 2;
331 $this->_priceSetID = CRM_Price_BAO_PriceSet::getFor('civicrm_contribution_page', $this->_id, $usedFor, 1);
332 if ($this->_priceSetID) {
333 $defaults['price_set_id'] = $this->_priceSetID;
334 }
335 }
336 else {
337 $defaults['is_active'] = 1;
338 // set current date as start date
339 // @todo look to change to $defaults['start_date'] = date('Ymd His');
340 // main settings form overrides this to implement above but this is left here
341 // 'in case' another extending form uses start_date - for now
342 $defaults['start_date'] = date('Y-m-d H:i:s');
343 }
344
345 if (!empty($defaults['recur_frequency_unit'])) {
346 $defaults['recur_frequency_unit'] = array_fill_keys(explode(CRM_Core_DAO::VALUE_SEPARATOR,
347 $defaults['recur_frequency_unit']
348 ), '1');
349 }
350 else {
351 // CRM-10860
352 $defaults['recur_frequency_unit'] = ['month' => 1];
353 }
354
355 // confirm page starts out enabled
356 if (!isset($defaults['is_confirm_enabled'])) {
357 $defaults['is_confirm_enabled'] = 1;
358 }
359
360 return $defaults;
361 }
362
363 /**
364 * Process the form.
365 */
366 public function postProcess() {
367 $pageId = $this->get('id');
368 //page is newly created.
369 if ($pageId && !$this->_id) {
370 $session = CRM_Core_Session::singleton();
371 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/contribute', 'reset=1'));
372 }
373 }
374
375 public function endPostProcess() {
376 // make submit buttons keep the current working tab opened, or save and next tab
377 if ($this->_action & CRM_Core_Action::UPDATE) {
378 $className = CRM_Utils_String::getClassName($this->_name);
379
380 //retrieve list of pages from StateMachine and find next page
381 //this is quite painful because StateMachine is full of protected variables
382 //so we have to retrieve all pages, find current page, and then retrieve next
383 $stateMachine = new CRM_Contribute_StateMachine_ContributionPage($this);
384 $states = $stateMachine->getStates();
385 $statesList = array_keys($states);
386 $currKey = array_search($className, $statesList);
387 $nextPage = (array_key_exists($currKey + 1, $statesList)) ? $statesList[$currKey + 1] : '';
388
389 //unfortunately, some classes don't map to subpage names, so we alter the exceptions
390
391 switch ($className) {
392 case 'Contribute':
393 $attributes = $this->getVar('_attributes');
394 $subPage = CRM_Utils_Request::retrieveComponent($attributes);
395 if ($subPage == 'friend') {
396 $nextPage = 'custom';
397 }
398 else {
399 $nextPage = 'settings';
400 }
401 break;
402
403 case 'MembershipBlock':
404 $subPage = 'membership';
405 $nextPage = 'thankyou';
406 break;
407
408 default:
409 $subPage = strtolower($className);
410 $nextPage = strtolower($nextPage);
411
412 if ($subPage == 'amount') {
413 $nextPage = 'membership';
414 }
415 elseif ($subPage == 'thankyou') {
416 $nextPage = 'friend';
417 }
418 break;
419 }
420
421 CRM_Core_Session::setStatus(ts("'%1' information has been saved.",
422 [1 => CRM_Utils_Array::value('title', CRM_Utils_Array::value($subPage, $this->get('tabHeader')), $className)]
423 ), ts('Saved'), 'success');
424
425 $this->postProcessHook();
426
427 if ($this->controller->getButtonName('submit') == "_qf_{$className}_next") {
428 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute/{$subPage}",
429 "action=update&reset=1&id={$this->_id}"
430 ));
431 }
432 elseif ($this->controller->getButtonName('submit') == "_qf_{$className}_submit_savenext") {
433 if ($nextPage) {
434 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute/{$nextPage}",
435 "action=update&reset=1&id={$this->_id}"
436 ));
437 }
438 else {
439 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute",
440 "reset=1"
441 ));
442 }
443 }
444 else {
445 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute", 'reset=1'));
446 }
447 }
448 }
449
450 /**
451 * Use the form name to create the tpl file name.
452 *
453 * @return string
454 */
455
456 /**
457 * @return string
458 */
459 public function getTemplateFileName() {
460 if ($this->controller->getPrint() || $this->getVar('_id') <= 0 ||
461 ($this->_action & CRM_Core_Action::DELETE) ||
462 (CRM_Utils_String::getClassName($this->_name) == 'AddProduct')
463 ) {
464 return parent::getTemplateFileName();
465 }
466 else {
467 // hack lets suppress the form rendering for now
468 self::$_template->assign('isForm', FALSE);
469 return 'CRM/Contribute/Form/ContributionPage/Tab.tpl';
470 }
471 }
472
473}