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