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