Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-01-05-23-28-33
[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 posted values of the form
217 *
218 * @param $files
219 * @param $self
220 *
221 * @return array list of errors to be posted back to the form
222 * @static
223 */
224 public static function formRule($values, $files, $self) {
225 $errors = array();
226 $contributionPageId = $self->_id;
227 //CRM-4286
228 if (strstr($values['title'], '/')) {
229 $errors['title'] = ts("Please do not use '/' in Title");
230 }
231
232 // ensure on-behalf-of profile meets minimum requirements
233 if (!empty($values['is_organization'])) {
234 if (empty($values['onbehalf_profile_id']) ) {
235 $errors['onbehalf_profile_id'] = ts('Please select a profile to collect organization information on this contribution page.');
236 }
237 else {
238 $requiredProfileFields = array('organization_name', 'email');
239 if (!CRM_Core_BAO_UFGroup::checkValidProfile($values['onbehalf_profile_id'], $requiredProfileFields)) {
240 $errors['onbehalf_profile_id'] = ts('Profile does not contain the minimum required fields for an On Behalf Of Organization');
241 }
242 }
243 }
244
245 //CRM-11494
246 $start = CRM_Utils_Date::processDate($values['start_date']);
247 $end = CRM_Utils_Date::processDate($values['end_date']);
248 if (($end < $start) && ($end != 0)) {
249 $errors['end_date'] = ts('End date should be after Start date.');
250 }
251
252 if (!empty($self->_values['payment_processor']) && $financialType = CRM_Contribute_BAO_Contribution::validateFinancialType($values['financial_type_id'])) {
253 $errors['financial_type_id'] = ts("Financial Account of account relationship of 'Expense Account is' is not configured for Financial Type : ") . $financialType;
254 }
255
256 //dont allow on behalf of save when
257 //pre or post profile consists of membership fields
258 if ($contributionPageId && !empty($values['is_organization'])) {
259 $ufJoinParams = array(
260 'module' => 'CiviContribute',
261 'entity_table' => 'civicrm_contribution_page',
262 'entity_id' => $contributionPageId,
263 );
264
265 list($contributionProfiles['custom_pre_id'],
266 $contributionProfiles['custom_post_id']
267 ) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
268
269 $conProfileType = NULL;
270 if ($contributionProfiles['custom_pre_id']) {
271 $preProfileType = CRM_Core_BAO_UFField::getProfileType($contributionProfiles['custom_pre_id']);
272 if ($preProfileType == 'Membership') {
273 $conProfileType = "'Includes Profile (top of page)'";
274 }
275 }
276
277 if ($contributionProfiles['custom_post_id']) {
278 $postProfileType = CRM_Core_BAO_UFField::getProfileType($contributionProfiles['custom_post_id']);
279 if ($postProfileType == 'Membership') {
280 $conProfileType = empty($conProfileType) ? "'Includes Profile (bottom of page)'" : "{$conProfileType} and 'Includes Profile (bottom of page)'";
281 }
282 }
283 if (!empty($conProfileType)) {
284 $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));
285 }
286 }
287 return $errors;
288 }
289
290 /**
291 * Process the form
292 *
293 * @return void
294 */
295 public function postProcess() {
296 // get the submitted form values.
297 $params = $this->controller->exportValues($this->_name);
298
299 // we do this in case the user has hit the forward/back button
300 if ($this->_id) {
301 $params['id'] = $this->_id;
302 }
303 else {
304 $session = CRM_Core_Session::singleton();
305 $params['created_id'] = $session->get('userID');
306 $params['created_date'] = date('YmdHis');
307 $config = CRM_Core_Config::singleton();
308 $params['currency'] = $config->defaultCurrency;
309 }
310
311 $params['is_confirm_enabled'] = CRM_Utils_Array::value('is_confirm_enabled', $params, FALSE);
312 $params['is_share'] = CRM_Utils_Array::value('is_share', $params, FALSE);
313 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
314 $params['is_credit_card_only'] = CRM_Utils_Array::value('is_credit_card_only', $params, FALSE);
315 $params['honor_block_is_active'] = CRM_Utils_Array::value('honor_block_is_active', $params, FALSE);
316 $params['is_for_organization'] = !empty($params['is_organization']) ? CRM_Utils_Array::value('is_for_organization', $params, FALSE) : 0;
317
318 $params['start_date'] = CRM_Utils_Date::processDate($params['start_date'], $params['start_date_time'], TRUE);
319 $params['end_date'] = CRM_Utils_Date::processDate($params['end_date'], $params['end_date_time'], TRUE);
320
321 $params['goal_amount'] = CRM_Utils_Rule::cleanMoney($params['goal_amount']);
322
323 if (!$params['honor_block_is_active']) {
324 $params['honor_block_title'] = NULL;
325 $params['honor_block_text'] = NULL;
326 }
327 else {
328 $sctJSON = CRM_Contribute_BAO_ContributionPage::formatMultilingualHonorParams($params);
329 }
330
331 $dao = CRM_Contribute_BAO_ContributionPage::create($params);
332
333 $ufJoinParams = array(
334 'onbehalf_profile_id' =>
335 array(
336 'is_active' => 1,
337 'module' => 'OnBehalf',
338 'entity_table' => 'civicrm_contribution_page',
339 'entity_id' => $dao->id,
340 ),
341 'honor_block_is_active' =>
342 array(
343 'module' => 'soft_credit',
344 'entity_table' => 'civicrm_contribution_page',
345 'entity_id' => $dao->id,
346 )
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 }