Merge pull request #12345 from MiyaNoctem/CRM-195-add-counts-to-contribution-sub...
[civicrm-core.git] / CRM / Contribute / Form / ContributionPage.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
07f8d162 35 * Contribution Page form.
6a488035
TO
36 */
37class CRM_Contribute_Form_ContributionPage extends CRM_Core_Form {
38
39 /**
fe482240 40 * The page id saved to the session for an update.
6a488035
TO
41 *
42 * @var int
6a488035
TO
43 */
44 protected $_id;
45
46 /**
fe482240 47 * The pledgeBlock id saved to the session for an update.
6a488035
TO
48 *
49 * @var int
6a488035
TO
50 */
51 protected $_pledgeBlockID;
52
53 /**
100fef9d 54 * Are we in single form mode or wizard mode?
6a488035
TO
55 *
56 * @var boolean
6a488035
TO
57 */
58 protected $_single;
59
60 /**
100fef9d 61 * Is this the first page?
6a488035
TO
62 *
63 * @var boolean
6a488035
TO
64 */
65 protected $_first = FALSE;
66
5fe87df6
N
67 /**
68 * Is this the last page?
69 *
70 * @var boolean
71 */
72 protected $_last = FALSE;
73
6a488035 74 /**
100fef9d 75 * Store price set id.
6a488035
TO
76 *
77 * @var int
6a488035
TO
78 */
79 protected $_priceSetID = NULL;
80
81 protected $_values;
d5965a37 82
6e62b28c
TM
83 /**
84 * Explicitly declare the entity api name.
85 */
86 public function getDefaultEntity() {
87 return 'Contribution';
88 }
6a488035
TO
89
90 /**
fe482240 91 * Set variables up before form is built.
6a488035
TO
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
e4fa553b 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 }
6a488035
TO
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', array(1 => $title)));
124 }
125 elseif ($this->_action == CRM_Core_Action::VIEW) {
126 CRM_Utils_System::setTitle(ts('Preview Page - %1', array(1 => $title)));
127 }
128 elseif ($this->_action == CRM_Core_Action::DELETE) {
129 CRM_Utils_System::setTitle(ts('Delete Page - %1', array(1 => $title)));
130 }
131
132 //cache values.
133 $this->_values = $this->get('values');
134 if (!is_array($this->_values)) {
135 $this->_values = array();
136 if (isset($this->_id) && $this->_id) {
137 $params = array('id' => $this->_id);
138 CRM_Core_DAO::commonRetrieve('CRM_Contribute_DAO_ContributionPage', $params, $this->_values);
c0eb40c1 139 CRM_Contribute_BAO_ContributionPage::setValues($this->_id, $this->_values);
6a488035
TO
140 }
141 $this->set('values', $this->_values);
142 }
c50f55b5 143
bb08e888 144 // Check permission to edit contribution page
66af7c48 145 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus() && $this->_action & CRM_Core_Action::UPDATE) {
bb08e888
E
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
c50f55b5 152 // Preload libraries required by the "Profiles" tab
133e2c99 153 $schemas = array('IndividualModel', 'OrganizationModel', 'ContributionModel');
c50f55b5
CW
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);
6a488035
TO
159 }
160
161 /**
fe482240 162 * Build the form object.
6a488035
TO
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
6a488035 178 if ($this->_single) {
5fe87df6
N
179 $buttons = array(
180 array(
181 'type' => 'next',
182 'name' => ts('Save'),
183 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
184 'isDefault' => TRUE,
185 ),
186 array(
187 'type' => 'upload',
188 'name' => ts('Save and Done'),
189 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
190 'subName' => 'done',
191 ),
6a488035 192 );
5fe87df6
N
193 if (!$this->_last) {
194 $buttons[] = array(
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[] = array(
202 'type' => 'cancel',
203 'name' => ts('Cancel'),
204 );
205 $this->addButtons($buttons);
6a488035
TO
206 }
207 else {
208 $buttons = array();
209 if (!$this->_first) {
210 $buttons[] = array(
211 'type' => 'back',
f212d37d 212 'name' => ts('Previous'),
6a488035
TO
213 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
214 );
215 }
216 $buttons[] = array(
217 'type' => 'next',
f212d37d 218 'name' => ts('Continue'),
6a488035
TO
219 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
220 'isDefault' => TRUE,
221 );
222 $buttons[] = array(
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'), array('onclick' => "location.href='civicrm/admin/custom/group?reset=1&action=browse'"));
235 }
133e2c99 236
1ebebaab
AH
237 // don't show option for contribution amounts section if membership price set
238 // this flag is sent to template
133e2c99 239
1ebebaab
AH
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;
133e2c99 245 if ($membershipBlock->find(TRUE) &&
1ebebaab
AH
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(array('memberPriceset' => $hasMembershipBlk));
6a488035
TO
255 }
256
257 /**
c490a46a 258 * Set default values for the form. Note that in edit/view mode
6a488035
TO
259 * the default values are retrieved from the database
260 *
6a488035 261 *
a6c01b45
CW
262 * @return array
263 * defaults
6a488035 264 */
00be9182 265 public function setDefaultValues() {
6a488035
TO
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 = array();
270 if (isset($this->_id) && $this->_id) {
271 $params = array('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 = array(
283 'entity_id' => $this->_id,
284 'entity_table' => ts('civicrm_contribution_page'),
285 );
286 $pledgeBlockDefaults = array();
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 = array(
353ffa53
TO
292 'is_pledge_interval',
293 'max_reminders',
294 'initial_reminder_day',
295 'additional_reminder_day',
dccd9f4f
ERL
296 'pledge_start_date',
297 'is_pledge_start_date_visible',
298 'is_pledge_start_date_editable',
6a488035
TO
299 );
300 foreach ($pledgeBlock as $key) {
301 $defaults[$key] = CRM_Utils_Array::value($key, $pledgeBlockDefaults);
dccd9f4f
ERL
302 if ($key == 'pledge_start_date' && CRM_Utils_Array::value($key, $pledgeBlockDefaults)) {
303 $defaultPledgeDate = (array) json_decode($pledgeBlockDefaults['pledge_start_date']);
304 $pledgeDateFields = array(
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 }
6a488035 316 }
a7488080 317 if (!empty($pledgeBlockDefaults['pledge_frequency_unit'])) {
6a488035 318 $defaults['pledge_frequency_unit'] = array_fill_keys(explode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
319 $pledgeBlockDefaults['pledge_frequency_unit']
320 ), '1');
6a488035
TO
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;
9da8dc8c 331 $this->_priceSetID = CRM_Price_BAO_PriceSet::getFor('civicrm_contribution_page', $this->_id, $usedFor, 1);
6a488035
TO
332 if ($this->_priceSetID) {
333 $defaults['price_set_id'] = $this->_priceSetID;
334 }
6a488035
TO
335 }
336 else {
337 $defaults['is_active'] = 1;
338 // set current date as start date
339 list($defaults['start_date'], $defaults['start_date_time']) = CRM_Utils_Date::setDateDefaults();
340 }
341
a7488080 342 if (!empty($defaults['recur_frequency_unit'])) {
6a488035 343 $defaults['recur_frequency_unit'] = array_fill_keys(explode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
344 $defaults['recur_frequency_unit']
345 ), '1');
6a488035
TO
346 }
347 else {
09fbb309 348 // CRM-10860
6a488035
TO
349 $defaults['recur_frequency_unit'] = array('month' => 1);
350 }
351
6a488035
TO
352 // confirm page starts out enabled
353 if (!isset($defaults['is_confirm_enabled'])) {
354 $defaults['is_confirm_enabled'] = 1;
355 }
356
357 return $defaults;
358 }
359
360 /**
fe482240 361 * Process the form.
6a488035
TO
362 */
363 public function postProcess() {
364 $pageId = $this->get('id');
365 //page is newly created.
366 if ($pageId && !$this->_id) {
367 $session = CRM_Core_Session::singleton();
368 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/contribute', 'reset=1'));
369 }
370 }
371
00be9182 372 public function endPostProcess() {
6a488035
TO
373 // make submit buttons keep the current working tab opened, or save and next tab
374 if ($this->_action & CRM_Core_Action::UPDATE) {
375 $className = CRM_Utils_String::getClassName($this->_name);
376
377 //retrieve list of pages from StateMachine and find next page
378 //this is quite painful because StateMachine is full of protected variables
379 //so we have to retrieve all pages, find current page, and then retrieve next
380 $stateMachine = new CRM_Contribute_StateMachine_ContributionPage($this);
353ffa53
TO
381 $states = $stateMachine->getStates();
382 $statesList = array_keys($states);
383 $currKey = array_search($className, $statesList);
384 $nextPage = (array_key_exists($currKey + 1, $statesList)) ? $statesList[$currKey + 1] : '';
6a488035
TO
385
386 //unfortunately, some classes don't map to subpage names, so we alter the exceptions
387
388 switch ($className) {
389 case 'Contribute':
353ffa53
TO
390 $attributes = $this->getVar('_attributes');
391 $subPage = strtolower(basename(CRM_Utils_Array::value('action', $attributes)));
874c9be7 392 $subPageName = ucfirst($subPage);
6a488035
TO
393 if ($subPage == 'friend') {
394 $nextPage = 'custom';
395 }
396 else {
397 $nextPage = 'settings';
398 }
399 break;
400
401 case 'MembershipBlock':
353ffa53 402 $subPage = 'membership';
6a488035 403 $subPageName = 'MembershipBlock';
353ffa53 404 $nextPage = 'thankyou';
6a488035
TO
405 break;
406
407 default:
353ffa53 408 $subPage = strtolower($className);
6a488035 409 $subPageName = $className;
353ffa53 410 $nextPage = strtolower($nextPage);
6a488035
TO
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.",
353ffa53
TO
422 array(1 => $subPageName)
423 ), ts('Saved'), 'success');
6a488035
TO
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}",
353ffa53
TO
429 "action=update&reset=1&id={$this->_id}"
430 ));
6a488035
TO
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}",
353ffa53
TO
435 "action=update&reset=1&id={$this->_id}"
436 ));
6a488035
TO
437 }
438 else {
439 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute",
353ffa53
TO
440 "reset=1"
441 ));
6a488035
TO
442 }
443 }
444 else {
445 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute", 'reset=1'));
446 }
447 }
448 }
449
186c9c17 450 /**
fe482240 451 * Use the form name to create the tpl file name.
186c9c17
EM
452 *
453 * @return string
186c9c17
EM
454 */
455 /**
456 * @return string
457 */
00be9182 458 public function getTemplateFileName() {
cc4f2812 459 if ($this->controller->getPrint() || $this->getVar('_id') <= 0 ||
6a488035
TO
460 ($this->_action & CRM_Core_Action::DELETE) ||
461 (CRM_Utils_String::getClassName($this->_name) == 'AddProduct')
462 ) {
463 return parent::getTemplateFileName();
464 }
465 else {
466 // hack lets suppress the form rendering for now
467 self::$_template->assign('isForm', FALSE);
468 return 'CRM/Contribute/Form/ContributionPage/Tab.tpl';
469 }
470 }
96025800 471
6a488035 472}