d3d437a5bb5581a497a982ff732ed2bc11638ce5
[civicrm-core.git] / CRM / Contribute / Form / ContributionPage / Settings.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 class CRM_Contribute_Form_ContributionPage_Settings extends CRM_Contribute_Form_ContributionPage {
36
37 /**
38 * Set variables up before form is built
39 *
40 * @return void
41 */
42 public function preProcess() {
43 parent::preProcess();
44 }
45
46 /**
47 * Set default values for the form. Note that in edit/view mode
48 * the default values are retrieved from the database
49 *
50 *
51 * @return void
52 */
53 public function setDefaultValues() {
54 $defaults = parent::setDefaultValues();
55 $soft_credit_types = CRM_Core_OptionGroup::values('soft_credit_type', TRUE, FALSE, FALSE, NULL, 'name');
56
57 if ($this->_id) {
58 $title = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage',
59 $this->_id,
60 'title'
61 );
62 CRM_Utils_System::setTitle(ts('Title and Settings') . " ($title)");
63
64 $ufJoinParams = array(
65 'module' => 'OnBehalf',
66 'entity_table' => 'civicrm_contribution_page',
67 'entity_id' => $this->_id,
68 );
69 $onBehalfIDs = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
70 if ($onBehalfIDs) {
71 // get the first one only
72 $defaults['onbehalf_profile_id'] = $onBehalfIDs[0];
73 }
74
75 $ufJoinDAO = new CRM_Core_DAO_UFJoin();
76 $ufJoinDAO->module = 'soft_credit';
77 $ufJoinDAO->entity_id = $this->_id;
78 if ($ufJoinDAO->find(TRUE)) {
79 $defaults['honoree_profile'] = $ufJoinDAO->uf_group_id;
80 $jsonData = CRM_Contribute_BAO_ContributionPage::formatMultilingualHonorParams($ufJoinDAO->module_data, TRUE);
81 $defaults = array_merge($defaults, $jsonData);
82 $defaults['honor_block_is_active'] = $ufJoinDAO->is_active;
83 }
84 else {
85 $ufGroupDAO = new CRM_Core_DAO_UFGroup();
86 $ufGroupDAO->name = 'honoree_individual';
87 if ($ufGroupDAO->find(TRUE)) {
88 $defaults['honoree_profile'] = $ufGroupDAO->id;
89 }
90 $defaults['soft_credit_types'] = array(
91 CRM_Utils_Array::value('in_honor_of', $soft_credit_types),
92 CRM_Utils_Array::value('in_memory_of', $soft_credit_types),
93 );
94 }
95 }
96 else {
97 CRM_Utils_System::setTitle(ts('Title and Settings'));
98
99 $ufGroupDAO = new CRM_Core_DAO_UFGroup();
100 $ufGroupDAO->name = 'honoree_individual';
101 if ($ufGroupDAO->find(TRUE)) {
102 $defaults['honoree_profile'] = $ufGroupDAO->id;
103 }
104 $defaults['soft_credit_types'] = array(
105 CRM_Utils_Array::value('in_honor_of', $soft_credit_types),
106 CRM_Utils_Array::value('in_memory_of', $soft_credit_types),
107 );
108 }
109
110 return $defaults;
111 }
112
113 /**
114 * Build the form object
115 *
116 * @return void
117 */
118 public function buildQuickForm() {
119
120 $this->_first = TRUE;
121 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage');
122
123 // financial Type
124 $this->addSelect('financial_type_id', array(), TRUE);
125
126 // name
127 $this->add('text', 'title', ts('Title'), $attributes['title'], TRUE);
128
129 //CRM-7362 --add campaigns.
130 CRM_Campaign_BAO_Campaign::addCampaign($this, CRM_Utils_Array::value('campaign_id', $this->_values));
131
132 $this->addWysiwyg('intro_text', ts('Introductory Message'), $attributes['intro_text']);
133
134 $this->addWysiwyg('footer_text', ts('Footer Message'), $attributes['footer_text']);
135
136 //Register schema which will be used for OnBehalOf and HonorOf profile Selector
137 CRM_UF_Page_ProfileEditor::registerSchemas(array('OrganizationModel', 'HouseholdModel'));
138
139 // is on behalf of an organization ?
140 $this->addElement('checkbox', 'is_organization', ts('Allow individuals to contribute and / or signup for membership on behalf of an organization?'), NULL, array('onclick' => "showHideByValue('is_organization',true,'for_org_text','table-row','radio',false);showHideByValue('is_organization',true,'for_org_option','table-row','radio',false);"));
141
142 $allowCoreTypes = array_merge(array('Contact', 'Organization'), CRM_Contact_BAO_ContactType::subTypes('Organization'));
143 $allowSubTypes = array();
144 $entities = array(
145 array(
146 'entity_name' => 'contact_1',
147 'entity_type' => 'OrganizationModel',
148 ),
149 );
150
151 $this->addProfileSelector('onbehalf_profile_id', ts('Organization Profile'), $allowCoreTypes, $allowSubTypes, $entities);
152
153 $options = array();
154 $options[] = $this->createElement('radio', NULL, NULL, ts('Optional'), 1);
155 $options[] = $this->createElement('radio', NULL, NULL, ts('Required'), 2);
156 $this->addGroup($options, 'is_for_organization', ts(''));
157 $this->add('textarea', 'for_organization', ts('On behalf of Label'), $attributes['for_organization']);
158
159 // collect goal amount
160 $this->add('text', 'goal_amount', ts('Goal Amount'), array('size' => 8, 'maxlength' => 12));
161 $this->addRule('goal_amount', ts('Please enter a valid money value (e.g. %1).', array(1 => CRM_Utils_Money::format('99.99', ' '))), 'money');
162
163 // is confirmation page enabled?
164 $this->addElement('checkbox', 'is_confirm_enabled', ts('Use a confirmation page?'));
165
166 // is this page shareable through social media ?
167 $this->addElement('checkbox', 'is_share', ts('Allow sharing through social media?'));
168
169 // is this page active ?
170 $this->addElement('checkbox', 'is_active', ts('Is this Online Contribution Page Active?'));
171
172 // should the honor be enabled
173 $this->addElement('checkbox', 'honor_block_is_active', ts('Honoree Section Enabled'), NULL, array('onclick' => "showHonor()"));
174
175 $this->add('text', 'honor_block_title', ts('Honoree Section Title'), array('maxlength' => 255, 'size' => 45));
176
177 $this->add('textarea', 'honor_block_text', ts('Honoree Introductory Message'), array('rows' => 2, 'cols' => 50));
178
179 $this->addSelect('soft_credit_types', array(
180 'label' => ts('Honor Types'),
181 'entity' => 'ContributionSoft',
182 'field' => 'soft_credit_type_id',
183 'multiple' => TRUE,
184 'class' => 'huge',
185 ));
186
187 $entities = array(
188 array(
189 'entity_name' => 'contact_1',
190 'entity_type' => 'IndividualModel',
191 ),
192 );
193
194 $allowCoreTypes = array_merge(array('Contact', 'Individual', 'Organization', 'Household'), CRM_Contact_BAO_ContactType::subTypes('Individual'));
195 $allowSubTypes = array();
196
197 $this->addProfileSelector('honoree_profile', ts('Honoree Profile'), $allowCoreTypes, $allowSubTypes, $entities);
198
199 if (!empty($this->_submitValues['honor_block_is_active'])) {
200 $this->addRule('soft_credit_types', ts('At least one value must be selected if Honor Section is active'), 'required');
201 $this->addRule('honoree_profile', ts('Please select a profile used for honoree'), 'required');
202 }
203
204 // add optional start and end dates
205 $this->addDateTime('start_date', ts('Start Date'));
206 $this->addDateTime('end_date', ts('End Date'));
207
208 $this->addFormRule(array('CRM_Contribute_Form_ContributionPage_Settings', 'formRule'), $this);
209
210 parent::buildQuickForm();
211 }
212
213 /**
214 * Global validation rules for the form
215 *
216 * @param array $values
217 * Posted values of the form.
218 *
219 * @param $files
220 * @param $self
221 *
222 * @return array list of errors to be posted back to the form
223 * @static
224 */
225 public static function formRule($values, $files, $self) {
226 $errors = array();
227 $contributionPageId = $self->_id;
228 //CRM-4286
229 if (strstr($values['title'], '/')) {
230 $errors['title'] = ts("Please do not use '/' in Title");
231 }
232
233 // ensure on-behalf-of profile meets minimum requirements
234 if (!empty($values['is_organization'])) {
235 if (empty($values['onbehalf_profile_id'])) {
236 $errors['onbehalf_profile_id'] = ts('Please select a profile to collect organization information on this contribution page.');
237 }
238 else {
239 $requiredProfileFields = array('organization_name', 'email');
240 if (!CRM_Core_BAO_UFGroup::checkValidProfile($values['onbehalf_profile_id'], $requiredProfileFields)) {
241 $errors['onbehalf_profile_id'] = ts('Profile does not contain the minimum required fields for an On Behalf Of Organization');
242 }
243 }
244 }
245
246 //CRM-11494
247 $start = CRM_Utils_Date::processDate($values['start_date']);
248 $end = CRM_Utils_Date::processDate($values['end_date']);
249 if (($end < $start) && ($end != 0)) {
250 $errors['end_date'] = ts('End date should be after Start date.');
251 }
252
253 if (!empty($self->_values['payment_processor']) && $financialType = CRM_Contribute_BAO_Contribution::validateFinancialType($values['financial_type_id'])) {
254 $errors['financial_type_id'] = ts("Financial Account of account relationship of 'Expense Account is' is not configured for Financial Type : ") . $financialType;
255 }
256
257 //dont allow on behalf of save when
258 //pre or post profile consists of membership fields
259 if ($contributionPageId && !empty($values['is_organization'])) {
260 $ufJoinParams = array(
261 'module' => 'CiviContribute',
262 'entity_table' => 'civicrm_contribution_page',
263 'entity_id' => $contributionPageId,
264 );
265
266 list($contributionProfiles['custom_pre_id'],
267 $contributionProfiles['custom_post_id']
268 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
269
270 $conProfileType = NULL;
271 if ($contributionProfiles['custom_pre_id']) {
272 $preProfileType = CRM_Core_BAO_UFField::getProfileType($contributionProfiles['custom_pre_id']);
273 if ($preProfileType == 'Membership') {
274 $conProfileType = "'Includes Profile (top of page)'";
275 }
276 }
277
278 if ($contributionProfiles['custom_post_id']) {
279 $postProfileType = CRM_Core_BAO_UFField::getProfileType($contributionProfiles['custom_post_id']);
280 if ($postProfileType == 'Membership') {
281 $conProfileType = empty($conProfileType) ? "'Includes Profile (bottom of page)'" : "{$conProfileType} and 'Includes Profile (bottom of page)'";
282 }
283 }
284 if (!empty($conProfileType)) {
285 $errors['is_organization'] = ts("You should move the membership related fields configured in %1 to the 'On Behalf' profile for this Contribution Page", array(1 => $conProfileType));
286 }
287 }
288 return $errors;
289 }
290
291 /**
292 * Process the form
293 *
294 * @return void
295 */
296 public function postProcess() {
297 // get the submitted form values.
298 $params = $this->controller->exportValues($this->_name);
299
300 // we do this in case the user has hit the forward/back button
301 if ($this->_id) {
302 $params['id'] = $this->_id;
303 }
304 else {
305 $session = CRM_Core_Session::singleton();
306 $params['created_id'] = $session->get('userID');
307 $params['created_date'] = date('YmdHis');
308 $config = CRM_Core_Config::singleton();
309 $params['currency'] = $config->defaultCurrency;
310 }
311
312 $params['is_confirm_enabled'] = CRM_Utils_Array::value('is_confirm_enabled', $params, FALSE);
313 $params['is_share'] = CRM_Utils_Array::value('is_share', $params, FALSE);
314 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
315 $params['is_credit_card_only'] = CRM_Utils_Array::value('is_credit_card_only', $params, FALSE);
316 $params['honor_block_is_active'] = CRM_Utils_Array::value('honor_block_is_active', $params, FALSE);
317 $params['is_for_organization'] = !empty($params['is_organization']) ? CRM_Utils_Array::value('is_for_organization', $params, FALSE) : 0;
318
319 $params['start_date'] = CRM_Utils_Date::processDate($params['start_date'], $params['start_date_time'], TRUE);
320 $params['end_date'] = CRM_Utils_Date::processDate($params['end_date'], $params['end_date_time'], TRUE);
321
322 $params['goal_amount'] = CRM_Utils_Rule::cleanMoney($params['goal_amount']);
323
324 if (!$params['honor_block_is_active']) {
325 $params['honor_block_title'] = NULL;
326 $params['honor_block_text'] = NULL;
327 }
328 else {
329 $sctJSON = CRM_Contribute_BAO_ContributionPage::formatMultilingualHonorParams($params);
330 }
331
332 $dao = CRM_Contribute_BAO_ContributionPage::create($params);
333
334 $ufJoinParams = array(
335 'onbehalf_profile_id' =>
336 array(
337 'is_active' => 1,
338 'module' => 'OnBehalf',
339 'entity_table' => 'civicrm_contribution_page',
340 'entity_id' => $dao->id,
341 ),
342 'honor_block_is_active' =>
343 array(
344 'module' => 'soft_credit',
345 'entity_table' => 'civicrm_contribution_page',
346 'entity_id' => $dao->id,
347 ),
348 );
349
350 foreach ($ufJoinParams as $index => $ufJoinParam) {
351 if (!empty($params[$index])) {
352 $ufJoinParam['weight'] = 1;
353 if ($index == 'honor_block_is_active') {
354 $ufJoinParam['is_active'] = 1;
355 $ufJoinParam['module'] = 'soft_credit';
356 $ufJoinParam['uf_group_id'] = $params['honoree_profile'];
357 $ufJoinParam['module_data'] = $sctJSON;
358 }
359 else {
360 // first delete all past entries
361 CRM_Core_BAO_UFJoin::deleteAll($ufJoinParam);
362 $ufJoinParam['uf_group_id'] = $params[$index];
363 }
364 CRM_Core_BAO_UFJoin::create($ufJoinParam);
365 }
366 elseif ($index == 'honor_block_is_active') {
367 //On subsequent honor_block_is_active uncheck, disable(don't delete)
368 //that particular honoree profile entry in UFjoin table, CRM-13981
369 $ufId = CRM_Core_BAO_UFJoin::findJoinEntryId($ufJoinParam);
370 if ($ufId) {
371 $ufJoinParam['uf_group_id'] = CRM_Core_BAO_UFJoin::findUFGroupId($ufJoinParam);
372 $ufJoinParam['is_active'] = 0;
373 CRM_Core_BAO_UFJoin::create($ufJoinParam);
374 }
375 }
376 }
377
378 $this->set('id', $dao->id);
379 if ($this->_action & CRM_Core_Action::ADD) {
380 $url = 'civicrm/admin/contribute/amount';
381 $urlParams = "action=update&reset=1&id={$dao->id}";
382 // special case for 'Save and Done' consistency.
383 if ($this->controller->getButtonName('submit') == '_qf_Amount_upload_done') {
384 $url = 'civicrm/admin/contribute';
385 $urlParams = 'reset=1';
386 CRM_Core_Session::setStatus(ts("'%1' information has been saved.",
387 array(1 => $this->getTitle())
388 ), ts('Saved'), 'success');
389 }
390
391 CRM_Utils_System::redirect(CRM_Utils_System::url($url, $urlParams));
392 }
393 parent::endPostProcess();
394 }
395
396 /**
397 * Return a descriptive name for the page, used in wizard header
398 *
399 * @return string
400 */
401 public function getTitle() {
402 return ts('Title and Settings');
403 }
404 }