Merge pull request #6559 from jitendrapurohit/CRM-16877
[civicrm-core.git] / CRM / Contribute / Form / ContributionPage / Premium.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 */
33
34 /**
35 * Form to process actions on Premiums.
36 */
37 class CRM_Contribute_Form_ContributionPage_Premium extends CRM_Contribute_Form_ContributionPage {
38
39 /**
40 * Set default values for the form.
41 */
42 public function setDefaultValues() {
43 $defaults = array();
44 if (isset($this->_id)) {
45 $dao = new CRM_Contribute_DAO_Premium();
46 $dao->entity_table = 'civicrm_contribution_page';
47 $dao->entity_id = $this->_id;
48 $dao->find(TRUE);
49 CRM_Core_DAO::storeValues($dao, $defaults);
50 }
51 return $defaults;
52 }
53
54 /**
55 * Build the form object.
56 */
57 public function buildQuickForm() {
58 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_Premium');
59 $this->addElement('checkbox', 'premiums_active', ts('Premiums Section Enabled?'), NULL);
60
61 $this->addElement('text', 'premiums_intro_title', ts('Title'), $attributes['premiums_intro_title']);
62
63 $this->add('textarea', 'premiums_intro_text', ts('Introductory Message'), 'rows=5, cols=50');
64
65 $this->add('text', 'premiums_contact_email', ts('Contact Email') . ' ', $attributes['premiums_contact_email']);
66
67 $this->addRule('premiums_contact_email', ts('Please enter a valid email address.') . ' ', 'email');
68
69 $this->add('text', 'premiums_contact_phone', ts('Contact Phone'), $attributes['premiums_contact_phone']);
70
71 $this->addRule('premiums_contact_phone', ts('Please enter a valid phone number.'), 'phone');
72
73 $this->addElement('checkbox', 'premiums_display_min_contribution', ts('Display Minimum Contribution Amount?'));
74
75 // CRM-10999 Control label and position for No Thank-you radio button
76 $this->add('text', 'premiums_nothankyou_label', ts('No Thank-you Label'), $attributes['premiums_nothankyou_label']);
77 $positions = array(1 => ts('Before Premiums'), 2 => ts('After Premiums'));
78 $this->add('select', 'premiums_nothankyou_position', ts('No Thank-you Option'), $positions);
79 $showForm = TRUE;
80
81 if ($this->_single) {
82 if ($this->_id) {
83 $daoPremium = new CRM_Contribute_DAO_Premium();
84 $daoPremium->entity_id = $this->_id;
85 $daoPremium->entity_table = 'civicrm_contribution_page';
86 $daoPremium->premiums_active = 1;
87 if ($daoPremium->find(TRUE)) {
88 $showForm = FALSE;
89 }
90 }
91 }
92 $this->assign('showForm', $showForm);
93
94 parent::buildQuickForm();
95 $this->addFormRule(array('CRM_Contribute_Form_ContributionPage_Premium', 'formRule'), $this);
96
97 $premiumPage = new CRM_Contribute_Page_Premium();
98 $premiumPage->browse();
99 }
100
101 /**
102 * Validation.
103 *
104 * @param array $params
105 * (ref.) an assoc array of name/value pairs.
106 *
107 * @return bool|array
108 * mixed true or array of errors
109 */
110 public static function formRule($params) {
111 $errors = array();
112 if (!empty($params['premiums_active'])) {
113 if (empty($params['premiums_nothankyou_label'])) {
114 $errors['premiums_nothankyou_label'] = ts('No Thank-you Label is a required field.');
115 }
116 }
117 return empty($errors) ? TRUE : $errors;
118 }
119
120 /**
121 * Process the form.
122 */
123 public function postProcess() {
124 // get the submitted form values.
125 $params = $this->controller->exportValues($this->_name);
126
127 // we do this in case the user has hit the forward/back button
128
129 $dao = new CRM_Contribute_DAO_Premium();
130 $dao->entity_table = 'civicrm_contribution_page';
131 $dao->entity_id = $this->_id;
132 $dao->find(TRUE);
133 $premiumID = $dao->id;
134 if ($premiumID) {
135 $params['id'] = $premiumID;
136 }
137
138 $params['premiums_active'] = CRM_Utils_Array::value('premiums_active', $params, FALSE);
139 $params['premiums_display_min_contribution'] = CRM_Utils_Array::value('premiums_display_min_contribution', $params, FALSE);
140 $params['entity_table'] = 'civicrm_contribution_page';
141 $params['entity_id'] = $this->_id;
142
143 $dao = new CRM_Contribute_DAO_Premium();
144 $dao->copyValues($params);
145 $dao->save();
146 parent::endPostProcess();
147 }
148
149 /**
150 * Return a descriptive name for the page, used in wizard header
151 *
152 * @return string
153 */
154 public function getTitle() {
155 return ts('Premiums');
156 }
157
158 }