Merge pull request #6499 from mlutfy/47-crm17025
[civicrm-core.git] / CRM / Contribute / Form / ContributionPage / ThankYou.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 */
33
34 /**
35 * Form to configure thank-you messages and receipting features for an online contribution page.
36 */
37 class CRM_Contribute_Form_ContributionPage_ThankYou extends CRM_Contribute_Form_ContributionPage {
38
39 /**
40 * Set default values for the form. Note that in edit/view mode
41 * the default values are retrieved from the database
42 *
43 *
44 * @return void
45 */
46 public function setDefaultValues() {
47 return parent::setDefaultValues();
48 }
49
50 /**
51 * Build the form object.
52 *
53 * @return void
54 */
55 public function buildQuickForm() {
56 $this->registerRule('emailList', 'callback', 'emailList', 'CRM_Utils_Rule');
57
58 // thank you title and text (html allowed in text)
59 $this->add('text', 'thankyou_title', ts('Thank-you Page Title'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'thankyou_title'), TRUE);
60
61 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'thankyou_text') + array('class' => 'collapsed');
62 $this->add('wysiwyg', 'thankyou_text', ts('Thank-you Message'), $attributes);
63 $this->add('wysiwyg', 'thankyou_footer', ts('Thank-you Footer'), $attributes);
64
65 $this->addElement('checkbox', 'is_email_receipt', ts('Email Receipt to Contributor?'), NULL, array('onclick' => "showReceipt()"));
66 $this->add('text', 'receipt_from_name', ts('Receipt From Name'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'receipt_from_name'));
67 $this->add('text', 'receipt_from_email', ts('Receipt From Email'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'receipt_from_email'));
68 $this->add('textarea', 'receipt_text', ts('Receipt Message'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'receipt_text'));
69
70 $this->add('text', 'cc_receipt', ts('CC Receipt To'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'cc_receipt'));
71 $this->addRule('cc_receipt', ts('Please enter a valid list of comma delimited email addresses'), 'emailList');
72
73 $this->add('text', 'bcc_receipt', ts('BCC Receipt To'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'bcc_receipt'));
74 $this->addRule('bcc_receipt', ts('Please enter a valid list of comma delimited email addresses'), 'emailList');
75
76 parent::buildQuickForm();
77 $this->addFormRule(array('CRM_Contribute_Form_ContributionPage_ThankYou', 'formRule'), $this);
78 }
79
80 /**
81 * Global form rule.
82 *
83 * @param array $fields
84 * The input form values.
85 * @param array $files
86 * The uploaded files if any.
87 * @param array $options
88 * Additional user data.
89 *
90 * @return bool|array
91 * true if no errors, else array of errors
92 */
93 public static function formRule($fields, $files, $options) {
94 $errors = array();
95
96 // if is_email_receipt is set, the receipt message must be non-empty
97 if (!empty($fields['is_email_receipt'])) {
98 //added for CRM-1348
99 $email = trim(CRM_Utils_Array::value('receipt_from_email', $fields));
100 if (empty($email) || !CRM_Utils_Rule::email($email)) {
101 $errors['receipt_from_email'] = ts('A valid Receipt From Email address must be specified if Email Receipt to Contributor is enabled');
102 }
103 }
104 return $errors;
105 }
106
107 /**
108 * Process the form.
109 *
110 * @return void
111 */
112 public function postProcess() {
113 // get the submitted form values.
114 $params = $this->controller->exportValues($this->_name);
115
116 $params['id'] = $this->_id;
117 $params['is_email_receipt'] = CRM_Utils_Array::value('is_email_receipt', $params, FALSE);
118 if (!$params['is_email_receipt']) {
119 $params['receipt_from_name'] = NULL;
120 $params['receipt_from_email'] = NULL;
121 $params['receipt_text'] = NULL;
122 $params['cc_receipt'] = NULL;
123 $params['bcc_receipt'] = NULL;
124 }
125
126 $dao = CRM_Contribute_BAO_ContributionPage::create($params);
127 parent::endPostProcess();
128 }
129
130 /**
131 * Return a descriptive name for the page, used in wizard header
132 *
133 * @return string
134 */
135 public function getTitle() {
136 return ts('Thanks and Receipt');
137 }
138
139 }