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