Merge pull request #5919 from monishdeb/4.6
[civicrm-core.git] / CRM / Contribute / Form / SoftCredit.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 * $Id$
33 *
34 */
35
36 /**
37 * This class build form elements for select existing or create new soft block
38 */
39 class CRM_Contribute_Form_SoftCredit {
40
41 /**
42 * Set variables up before form is built.
43 *
44 * @param CRM_Core_Form $form
45 *
46 * @return void
47 */
48 public static function preProcess(&$form) {
49 $contriDAO = new CRM_Contribute_DAO_Contribution();
50 $contriDAO->id = $form->_id;
51 $contriDAO->find(TRUE);
52 if ($contriDAO->contribution_page_id) {
53 $ufJoinParams = array(
54 'module' => 'soft_credit',
55 'entity_table' => 'civicrm_contribution_page',
56 'entity_id' => $contriDAO->contribution_page_id,
57 );
58 $profileId = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
59
60 //check if any honree profile is enabled if yes then assign its profile type to $_honoreeProfileType
61 // which will be used to constraint soft-credit contact type in formRule, CRM-13981
62 if ($profileId[0]) {
63 $form->_honoreeProfileType = CRM_Core_BAO_UFGroup::getContactType($profileId[0]);
64 }
65 }
66 }
67
68
69 /**
70 * Function used to build form element for soft credit block.
71 *
72 * @param CRM_Core_Form $form
73 *
74 * @return void
75 */
76 public static function buildQuickForm(&$form) {
77 if (!empty($form->_honor_block_is_active)) {
78 $ufJoinDAO = new CRM_Core_DAO_UFJoin();
79 $ufJoinDAO->module = 'soft_credit';
80 $ufJoinDAO->entity_id = $form->_id;
81 if ($ufJoinDAO->find(TRUE)) {
82 $jsonData = CRM_Contribute_BAO_ContributionPage::formatMultilingualHonorParams($ufJoinDAO->module_data, TRUE);
83 if ($jsonData) {
84 foreach (array('honor_block_title', 'honor_block_text') as $name) {
85 $form->assign($name, $jsonData[$name]);
86 }
87
88 $softCreditTypes = CRM_Core_OptionGroup::values("soft_credit_type", FALSE);
89
90 // radio button for Honor Type
91 foreach ($jsonData['soft_credit_types'] as $value) {
92 $honorTypes[$value] = $form->createElement('radio', NULL, NULL, $softCreditTypes[$value], $value);
93 }
94 $form->addGroup($honorTypes, 'soft_credit_type_id', NULL)->setAttribute('allowClear', TRUE);
95 }
96 }
97 return $form;
98 }
99
100 // by default generate 10 blocks
101 $item_count = 11;
102
103 $showSoftCreditRow = 2;
104 if ($form->getAction() & CRM_Core_Action::UPDATE) {
105 $form->_softCreditInfo = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($form->_id, TRUE);
106 }
107 elseif (!empty($form->_pledgeID)) {
108 //Check and select most recent completed contrubtion and use it to retrieve
109 //soft-credit information to use as default for current pledge payment, CRM-13981
110 $pledgePayments = CRM_Pledge_BAO_PledgePayment::getPledgePayments($form->_pledgeID);
111 foreach ($pledgePayments as $id => $record) {
112 if ($record['contribution_id']) {
113 $softCredits = CRM_Contribute_BAO_ContributionSoft::getSoftContribution($record['contribution_id'], TRUE);
114 if ($record['status'] == 'Completed' && count($softCredits) > 0) {
115 $form->_softCreditInfo = $softCredits;
116 }
117 }
118 }
119 }
120
121 if (property_exists($form, "_softCreditInfo")) {
122 if (!empty($form->_softCreditInfo['soft_credit'])) {
123 $showSoftCreditRow = count($form->_softCreditInfo['soft_credit']);
124 $showSoftCreditRow++;
125 }
126 }
127
128 for ($rowNumber = 1; $rowNumber <= $item_count; $rowNumber++) {
129 $form->addEntityRef("soft_credit_contact_id[{$rowNumber}]", ts('Contact'), array('create' => TRUE));
130
131 $form->addMoney("soft_credit_amount[{$rowNumber}]", ts('Amount'), FALSE, NULL, FALSE);
132
133 $form->addSelect("soft_credit_type[{$rowNumber}]", array(
134 'entity' => 'contribution_soft',
135 'field' => 'soft_credit_type_id',
136 'label' => ts('Type'),
137 ));
138 if (!empty($form->_softCreditInfo['soft_credit'][$rowNumber]['soft_credit_id'])) {
139 $form->add('hidden', "soft_credit_id[{$rowNumber}]",
140 $form->_softCreditInfo['soft_credit'][$rowNumber]['soft_credit_id']);
141 }
142 }
143
144 // CRM-7368 allow user to set or edit PCP link for contributions
145 $siteHasPCPs = CRM_Contribute_PseudoConstant::pcPage();
146 if (!CRM_Utils_Array::crmIsEmptyArray($siteHasPCPs)) {
147 $form->assign('siteHasPCPs', 1);
148 $form->add('hidden', 'pcp_made_through'); // stores the label
149 $form->add('text', 'pcp_made_through_id', ts('Credit to a Personal Campaign Page'), array('class' => 'twenty'));
150 $form->addElement('checkbox', 'pcp_display_in_roll', ts('Display in Honor Roll?'), NULL);
151 $form->addElement('text', 'pcp_roll_nickname', ts('Name (for Honor Roll)'));
152 $form->addElement('textarea', 'pcp_personal_note', ts('Personal Note (for Honor Roll)'));
153 }
154 $form->assign('showSoftCreditRow', $showSoftCreditRow);
155 $form->assign('rowCount', $item_count);
156 $form->addElement('hidden', 'sct_default_id',
157 CRM_Core_OptionGroup::getDefaultValue("soft_credit_type"),
158 array('id' => 'sct_default_id')
159 );
160 }
161
162 /**
163 * Function used to set defaults for soft credit block.
164 *
165 * @param $defaults
166 * @param $form
167 */
168 public static function setDefaultValues(&$defaults, &$form) {
169 //Used to hide/unhide PCP and/or Soft-credit Panes
170 $noPCP = $noSoftCredit = TRUE;
171 if (!empty($form->_softCreditInfo['soft_credit'])) {
172 $noSoftCredit = FALSE;
173 foreach ($form->_softCreditInfo['soft_credit'] as $key => $value) {
174 $defaults["soft_credit_amount[$key]"] = CRM_Utils_Money::format($value['amount'], NULL, '%a');
175 $defaults["soft_credit_contact_id[$key]"] = $value['contact_id'];
176 $defaults["soft_credit_type[$key]"] = $value['soft_credit_type'];
177 }
178 }
179 if (!empty($form->_softCreditInfo['pcp_id'])) {
180 $noPCP = FALSE;
181 $pcpInfo = $form->_softCreditInfo;
182 $pcpId = CRM_Utils_Array::value('pcp_id', $pcpInfo);
183 $pcpTitle = CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $pcpId, 'title');
184 $contributionPageTitle = CRM_PCP_BAO_PCP::getPcpPageTitle($pcpId, 'contribute');
185 $defaults['pcp_made_through'] = CRM_Utils_Array::value('sort_name', $pcpInfo) . " :: " . $pcpTitle . " :: " . $contributionPageTitle;
186 $defaults['pcp_made_through_id'] = CRM_Utils_Array::value('pcp_id', $pcpInfo);
187 $defaults['pcp_display_in_roll'] = CRM_Utils_Array::value('pcp_display_in_roll', $pcpInfo);
188 $defaults['pcp_roll_nickname'] = CRM_Utils_Array::value('pcp_roll_nickname', $pcpInfo);
189 $defaults['pcp_personal_note'] = CRM_Utils_Array::value('pcp_personal_note', $pcpInfo);
190 }
191
192 $form->assign('noSoftCredit', $noSoftCredit);
193 $form->assign('noPCP', $noPCP);
194 }
195
196 /**
197 * Global form rule.
198 *
199 * @param array $fields
200 * The input form values.
201 *
202 * @param $errors
203 * @param $self
204 *
205 * @return array
206 * Array of errors
207 */
208 public static function formRule($fields, $errors, $self) {
209 $errors = array();
210
211 // if honor roll fields are populated but no PCP is selected
212 if (empty($fields['pcp_made_through_id'])) {
213 if (!empty($fields['pcp_display_in_roll']) || !empty($fields['pcp_roll_nickname']) ||
214 CRM_Utils_Array::value('pcp_personal_note', $fields)
215 ) {
216 $errors['pcp_made_through_id'] = ts('Please select a Personal Campaign Page, OR uncheck Display in Honor Roll and clear both the Honor Roll Name and the Personal Note field.');
217 }
218 }
219
220 if (!empty($fields['soft_credit_amount'])) {
221 $repeat = array_count_values($fields['soft_credit_contact_id']);
222 foreach ($fields['soft_credit_amount'] as $key => $val) {
223 if (!empty($fields['soft_credit_contact_id'][$key])) {
224 if ($repeat[$fields['soft_credit_contact_id'][$key]] > 1) {
225 $errors["soft_credit_contact[$key]"] = ts('You cannot enter multiple soft credits for the same contact.');
226 }
227 if ($self->_action == CRM_Core_Action::ADD && $fields['soft_credit_amount'][$key]
228 && (CRM_Utils_Rule::cleanMoney($fields['soft_credit_amount'][$key]) > CRM_Utils_Rule::cleanMoney($fields['total_amount']))
229 ) {
230 $errors["soft_credit_amount[$key]"] = ts('Soft credit amount cannot be more than the total amount.');
231 }
232 if (empty($fields['soft_credit_amount'][$key])) {
233 $errors["soft_credit_amount[$key]"] = ts('Please enter the soft credit amount.');
234 }
235 $contactType = CRM_Contact_BAO_Contact::getContactType($fields['soft_credit_contact_id'][$key]);
236 if ($self->_honoreeProfileType && $self->_honoreeProfileType != $contactType) {
237 $errors["soft_credit_contact[$key]"] = ts('Please choose a contact of type %1', array(1 => $self->_honoreeProfileType));
238 }
239 }
240 }
241 }
242
243 return $errors;
244 }
245
246 }