Merge pull request #8683 from jitendrapurohit/PaypalPro
[civicrm-core.git] / CRM / Contribute / Form / ContributionPage.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
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',
6a488035
TO
296 );
297 foreach ($pledgeBlock as $key) {
298 $defaults[$key] = CRM_Utils_Array::value($key, $pledgeBlockDefaults);
299 }
a7488080 300 if (!empty($pledgeBlockDefaults['pledge_frequency_unit'])) {
6a488035 301 $defaults['pledge_frequency_unit'] = array_fill_keys(explode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
302 $pledgeBlockDefaults['pledge_frequency_unit']
303 ), '1');
6a488035
TO
304 }
305
306 // fix the display of the monetary value, CRM-4038
307 if (isset($defaults['goal_amount'])) {
308 $defaults['goal_amount'] = CRM_Utils_Money::format($defaults['goal_amount'], NULL, '%a');
309 }
310
311 // get price set of type contributions
312 //this is the value for stored in db if price set extends contribution
313 $usedFor = 2;
9da8dc8c 314 $this->_priceSetID = CRM_Price_BAO_PriceSet::getFor('civicrm_contribution_page', $this->_id, $usedFor, 1);
6a488035
TO
315 if ($this->_priceSetID) {
316 $defaults['price_set_id'] = $this->_priceSetID;
317 }
318
a7488080 319 if (!empty($defaults['end_date'])) {
6a488035
TO
320 list($defaults['end_date'], $defaults['end_date_time']) = CRM_Utils_Date::setDateDefaults($defaults['end_date']);
321 }
322
a7488080 323 if (!empty($defaults['start_date'])) {
6a488035
TO
324 list($defaults['start_date'], $defaults['start_date_time']) = CRM_Utils_Date::setDateDefaults($defaults['start_date']);
325 }
326 }
327 else {
328 $defaults['is_active'] = 1;
329 // set current date as start date
330 list($defaults['start_date'], $defaults['start_date_time']) = CRM_Utils_Date::setDateDefaults();
331 }
332
a7488080 333 if (!empty($defaults['recur_frequency_unit'])) {
6a488035 334 $defaults['recur_frequency_unit'] = array_fill_keys(explode(CRM_Core_DAO::VALUE_SEPARATOR,
353ffa53
TO
335 $defaults['recur_frequency_unit']
336 ), '1');
6a488035
TO
337 }
338 else {
339 # CRM 10860
340 $defaults['recur_frequency_unit'] = array('month' => 1);
341 }
342
6a488035
TO
343 // confirm page starts out enabled
344 if (!isset($defaults['is_confirm_enabled'])) {
345 $defaults['is_confirm_enabled'] = 1;
346 }
347
348 return $defaults;
349 }
350
351 /**
fe482240 352 * Process the form.
6a488035
TO
353 */
354 public function postProcess() {
355 $pageId = $this->get('id');
356 //page is newly created.
357 if ($pageId && !$this->_id) {
358 $session = CRM_Core_Session::singleton();
359 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/contribute', 'reset=1'));
360 }
361 }
362
00be9182 363 public function endPostProcess() {
6a488035
TO
364 // make submit buttons keep the current working tab opened, or save and next tab
365 if ($this->_action & CRM_Core_Action::UPDATE) {
366 $className = CRM_Utils_String::getClassName($this->_name);
367
368 //retrieve list of pages from StateMachine and find next page
369 //this is quite painful because StateMachine is full of protected variables
370 //so we have to retrieve all pages, find current page, and then retrieve next
371 $stateMachine = new CRM_Contribute_StateMachine_ContributionPage($this);
353ffa53
TO
372 $states = $stateMachine->getStates();
373 $statesList = array_keys($states);
374 $currKey = array_search($className, $statesList);
375 $nextPage = (array_key_exists($currKey + 1, $statesList)) ? $statesList[$currKey + 1] : '';
6a488035
TO
376
377 //unfortunately, some classes don't map to subpage names, so we alter the exceptions
378
379 switch ($className) {
380 case 'Contribute':
353ffa53
TO
381 $attributes = $this->getVar('_attributes');
382 $subPage = strtolower(basename(CRM_Utils_Array::value('action', $attributes)));
874c9be7 383 $subPageName = ucfirst($subPage);
6a488035
TO
384 if ($subPage == 'friend') {
385 $nextPage = 'custom';
386 }
387 else {
388 $nextPage = 'settings';
389 }
390 break;
391
392 case 'MembershipBlock':
353ffa53 393 $subPage = 'membership';
6a488035 394 $subPageName = 'MembershipBlock';
353ffa53 395 $nextPage = 'thankyou';
6a488035
TO
396 break;
397
398 default:
353ffa53 399 $subPage = strtolower($className);
6a488035 400 $subPageName = $className;
353ffa53 401 $nextPage = strtolower($nextPage);
6a488035
TO
402
403 if ($subPage == 'amount') {
404 $nextPage = 'membership';
405 }
406 elseif ($subPage == 'thankyou') {
407 $nextPage = 'friend';
408 }
409 break;
410 }
411
412 CRM_Core_Session::setStatus(ts("'%1' information has been saved.",
353ffa53
TO
413 array(1 => $subPageName)
414 ), ts('Saved'), 'success');
6a488035
TO
415
416 $this->postProcessHook();
417
418 if ($this->controller->getButtonName('submit') == "_qf_{$className}_next") {
419 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute/{$subPage}",
353ffa53
TO
420 "action=update&reset=1&id={$this->_id}"
421 ));
6a488035
TO
422 }
423 elseif ($this->controller->getButtonName('submit') == "_qf_{$className}_submit_savenext") {
424 if ($nextPage) {
425 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute/{$nextPage}",
353ffa53
TO
426 "action=update&reset=1&id={$this->_id}"
427 ));
6a488035
TO
428 }
429 else {
430 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute",
353ffa53
TO
431 "reset=1"
432 ));
6a488035
TO
433 }
434 }
435 else {
436 CRM_Utils_System::redirect(CRM_Utils_System::url("civicrm/admin/contribute", 'reset=1'));
437 }
438 }
439 }
440
186c9c17 441 /**
fe482240 442 * Use the form name to create the tpl file name.
186c9c17
EM
443 *
444 * @return string
186c9c17
EM
445 */
446 /**
447 * @return string
448 */
00be9182 449 public function getTemplateFileName() {
cc4f2812 450 if ($this->controller->getPrint() || $this->getVar('_id') <= 0 ||
6a488035
TO
451 ($this->_action & CRM_Core_Action::DELETE) ||
452 (CRM_Utils_String::getClassName($this->_name) == 'AddProduct')
453 ) {
454 return parent::getTemplateFileName();
455 }
456 else {
457 // hack lets suppress the form rendering for now
458 self::$_template->assign('isForm', FALSE);
459 return 'CRM/Contribute/Form/ContributionPage/Tab.tpl';
460 }
461 }
96025800 462
6a488035 463}