Merge pull request #10707 from eileenmcnaughton/civimail
[civicrm-core.git] / CRM / Pledge / BAO / PledgeBlock.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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-2017
32 */
33 class CRM_Pledge_BAO_PledgeBlock extends CRM_Pledge_DAO_PledgeBlock {
34
35 /**
36 * Class constructor.
37 */
38 public function __construct() {
39 parent::__construct();
40 }
41
42 /**
43 * Retrieve DB object based on input parameters.
44 *
45 * It also stores all the retrieved values in the default array.
46 *
47 * @param array $params
48 * (reference ) an assoc array of name/value pairs.
49 * @param array $defaults
50 * (reference ) an assoc array to hold the flattened values.
51 *
52 * @return CRM_Pledge_BAO_PledgeBlock
53 */
54 public static function retrieve(&$params, &$defaults) {
55 $pledgeBlock = new CRM_Pledge_DAO_PledgeBlock();
56 $pledgeBlock->copyValues($params);
57 if ($pledgeBlock->find(TRUE)) {
58 CRM_Core_DAO::storeValues($pledgeBlock, $defaults);
59 return $pledgeBlock;
60 }
61 return NULL;
62 }
63
64 /**
65 * Takes an associative array and creates a pledgeBlock object.
66 *
67 * @param array $params
68 * (reference ) an assoc array of name/value pairs.
69 *
70 * @return CRM_Pledge_BAO_PledgeBlock
71 */
72 public static function &create(&$params) {
73 $transaction = new CRM_Core_Transaction();
74 $pledgeBlock = self::add($params);
75
76 if (is_a($pledgeBlock, 'CRM_Core_Error')) {
77 $pledgeBlock->rollback();
78 return $pledgeBlock;
79 }
80
81 $params['id'] = $pledgeBlock->id;
82
83 $transaction->commit();
84
85 return $pledgeBlock;
86 }
87
88 /**
89 * Add pledgeBlock.
90 *
91 * @param array $params
92 * Reference array contains the values submitted by the form.
93 *
94 *
95 * @return object
96 */
97 public static function add(&$params) {
98
99 if (!empty($params['id'])) {
100 CRM_Utils_Hook::pre('edit', 'PledgeBlock', $params['id'], $params);
101 }
102 else {
103 CRM_Utils_Hook::pre('create', 'PledgeBlock', NULL, $params);
104 }
105
106 $pledgeBlock = new CRM_Pledge_DAO_PledgeBlock();
107
108 // fix for pledge_frequency_unit
109 $freqUnits = CRM_Utils_Array::value('pledge_frequency_unit', $params);
110
111 if ($freqUnits && is_array($freqUnits)) {
112 unset($params['pledge_frequency_unit']);
113 $newFreqUnits = array();
114 foreach ($freqUnits as $k => $v) {
115 if ($v) {
116 $newFreqUnits[$k] = $v;
117 }
118 }
119
120 $freqUnits = $newFreqUnits;
121 if (is_array($freqUnits) && !empty($freqUnits)) {
122 $freqUnits = implode(CRM_Core_DAO::VALUE_SEPARATOR, array_keys($freqUnits));
123 $pledgeBlock->pledge_frequency_unit = $freqUnits;
124 }
125 else {
126 $pledgeBlock->pledge_frequency_unit = '';
127 }
128 }
129
130 $pledgeBlock->copyValues($params);
131 $result = $pledgeBlock->save();
132
133 if (!empty($params['id'])) {
134 CRM_Utils_Hook::post('edit', 'PledgeBlock', $pledgeBlock->id, $pledgeBlock);
135 }
136 else {
137 CRM_Utils_Hook::post('create', 'Pledge', $pledgeBlock->id, $pledgeBlock);
138 }
139
140 return $result;
141 }
142
143 /**
144 * Delete the pledgeBlock.
145 *
146 * @param int $id
147 * PledgeBlock id.
148 *
149 * @return mixed|null
150 */
151 public static function deletePledgeBlock($id) {
152 CRM_Utils_Hook::pre('delete', 'PledgeBlock', $id, CRM_Core_DAO::$_nullArray);
153
154 $transaction = new CRM_Core_Transaction();
155
156 $results = NULL;
157
158 $dao = new CRM_Pledge_DAO_PledgeBlock();
159 $dao->id = $id;
160 $results = $dao->delete();
161
162 $transaction->commit();
163
164 CRM_Utils_Hook::post('delete', 'PledgeBlock', $dao->id, $dao);
165
166 return $results;
167 }
168
169 /**
170 * Return Pledge Block info in Contribution Pages.
171 *
172 * @param int $pageID
173 * Contribution page id.
174 *
175 * @return array
176 */
177 public static function getPledgeBlock($pageID) {
178 $pledgeBlock = array();
179
180 $dao = new CRM_Pledge_DAO_PledgeBlock();
181 $dao->entity_table = 'civicrm_contribution_page';
182 $dao->entity_id = $pageID;
183 if ($dao->find(TRUE)) {
184 CRM_Core_DAO::storeValues($dao, $pledgeBlock);
185 }
186
187 return $pledgeBlock;
188 }
189
190 /**
191 * Build Pledge Block in Contribution Pages.
192 *
193 * @param CRM_Core_Form $form
194 */
195 public static function buildPledgeBlock($form) {
196 //build pledge payment fields.
197 if (!empty($form->_values['pledge_id'])) {
198 //get all payments required details.
199 $allPayments = array();
200 $returnProperties = array(
201 'status_id',
202 'scheduled_date',
203 'scheduled_amount',
204 'currency',
205 'pledge_start_date',
206 );
207 CRM_Core_DAO::commonRetrieveAll('CRM_Pledge_DAO_PledgePayment', 'pledge_id',
208 $form->_values['pledge_id'], $allPayments, $returnProperties
209 );
210 // get all status
211 $allStatus = CRM_Contribute_PseudoConstant::contributionStatus(NULL, 'name');
212
213 $nextPayment = array();
214 $isNextPayment = FALSE;
215 $overduePayments = array();
216 foreach ($allPayments as $payID => $value) {
217 if ($allStatus[$value['status_id']] == 'Overdue') {
218 $overduePayments[$payID] = array(
219 'id' => $payID,
220 'scheduled_amount' => CRM_Utils_Rule::cleanMoney($value['scheduled_amount']),
221 'scheduled_amount_currency' => $value['currency'],
222 'scheduled_date' => CRM_Utils_Date::customFormat($value['scheduled_date'],
223 '%B %d'
224 ),
225 );
226 }
227 elseif (!$isNextPayment &&
228 $allStatus[$value['status_id']] == 'Pending'
229 ) {
230 // get the next payment.
231 $nextPayment = array(
232 'id' => $payID,
233 'scheduled_amount' => CRM_Utils_Rule::cleanMoney($value['scheduled_amount']),
234 'scheduled_amount_currency' => $value['currency'],
235 'scheduled_date' => CRM_Utils_Date::customFormat($value['scheduled_date'],
236 '%B %d'
237 ),
238 );
239 $isNextPayment = TRUE;
240 }
241 }
242
243 // build check box array for payments.
244 $payments = array();
245 if (!empty($overduePayments)) {
246 foreach ($overduePayments as $id => $payment) {
247 $label = ts("%1 - due on %2 (overdue)", array(
248 1 => CRM_Utils_Money::format(CRM_Utils_Array::value('scheduled_amount', $payment), CRM_Utils_Array::value('scheduled_amount_currency', $payment)),
249 2 => CRM_Utils_Array::value('scheduled_date', $payment),
250 ));
251 $paymentID = CRM_Utils_Array::value('id', $payment);
252 $payments[] = $form->createElement('checkbox', $paymentID, NULL, $label, array('amount' => CRM_Utils_Array::value('scheduled_amount', $payment)));
253 }
254 }
255
256 if (!empty($nextPayment)) {
257 $label = ts("%1 - due on %2", array(
258 1 => CRM_Utils_Money::format(CRM_Utils_Array::value('scheduled_amount', $nextPayment), CRM_Utils_Array::value('scheduled_amount_currency', $nextPayment)),
259 2 => CRM_Utils_Array::value('scheduled_date', $nextPayment),
260 ));
261 $paymentID = CRM_Utils_Array::value('id', $nextPayment);
262 $payments[] = $form->createElement('checkbox', $paymentID, NULL, $label, array('amount' => CRM_Utils_Array::value('scheduled_amount', $nextPayment)));
263 }
264 // give error if empty or build form for payment.
265 if (empty($payments)) {
266 CRM_Core_Error::fatal(ts("Oops. It looks like there is no valid payment status for online payment."));
267 }
268 else {
269 $form->assign('is_pledge_payment', TRUE);
270 $form->addGroup($payments, 'pledge_amount', ts('Make Pledge Payment(s):'), '<br />');
271 }
272 }
273 else {
274
275 $pledgeBlock = self::getPledgeBlock($form->_id);
276
277 // build form for pledge creation.
278 $pledgeOptions = array(
279 '0' => ts('I want to make a one-time contribution'),
280 '1' => ts('I pledge to contribute this amount every'),
281 );
282 $form->addRadio('is_pledge', ts('Pledge Frequency Interval'), $pledgeOptions,
283 NULL, array('<br/>')
284 );
285 $form->addElement('text', 'pledge_installments', ts('Installments'), array('size' => 3));
286
287 if (!empty($pledgeBlock['is_pledge_interval'])) {
288 $form->assign('is_pledge_interval', CRM_Utils_Array::value('is_pledge_interval', $pledgeBlock));
289 $form->addElement('text', 'pledge_frequency_interval', NULL, array('size' => 3));
290 }
291 else {
292 $form->add('hidden', 'pledge_frequency_interval', 1);
293 }
294 // Frequency unit drop-down label suffixes switch from *ly to *(s)
295 $freqUnitVals = explode(CRM_Core_DAO::VALUE_SEPARATOR, $pledgeBlock['pledge_frequency_unit']);
296 $freqUnits = array();
297 $frequencyUnits = CRM_Core_OptionGroup::values('recur_frequency_units');
298 foreach ($freqUnitVals as $key => $val) {
299 if (array_key_exists($val, $frequencyUnits)) {
300 $freqUnits[$val] = !empty($pledgeBlock['is_pledge_interval']) ? "{$frequencyUnits[$val]}(s)" : $frequencyUnits[$val];
301 }
302 }
303 $form->addElement('select', 'pledge_frequency_unit', NULL, $freqUnits);
304 // CRM-18854
305 if (CRM_Utils_Array::value('is_pledge_start_date_visible', $pledgeBlock)) {
306 if (CRM_Utils_Array::value('pledge_start_date', $pledgeBlock)) {
307 $defaults = array();
308 $date = (array) json_decode($pledgeBlock['pledge_start_date']);
309 list($field, $value) = each($date);
310 switch ($field) {
311 case 'contribution_date':
312 $form->addDate('start_date', ts('First installment payment'));
313 $paymentDate = $value = date('m/d/Y');
314 list($defaults['start_date'], $defaults['start_date_time']) = CRM_Utils_Date::setDateDefaults(NULL);
315 $form->assign('is_date', TRUE);
316 break;
317
318 case 'calendar_date':
319 $form->addDate('start_date', ts('First installment payment'));
320 list($defaults['start_date'], $defaults['start_date_time']) = CRM_Utils_Date::setDateDefaults($value);
321 $form->assign('is_date', TRUE);
322 $paymentDate = $value;
323 break;
324
325 case 'calendar_month':
326 $month = CRM_Utils_Date::getCalendarDayOfMonth();
327 $form->add('select', 'start_date', ts('Day of month installments paid'), $month);
328 $paymentDate = CRM_Pledge_BAO_Pledge::getPaymentDate($value);
329 list($defaults['start_date'], $defaults['start_date_time']) = CRM_Utils_Date::setDateDefaults($paymentDate);
330 break;
331
332 default:
333 break;
334
335 }
336 $form->setDefaults($defaults);
337 $form->assign('start_date_display', $paymentDate);
338 $form->assign('start_date_editable', FALSE);
339 if (CRM_Utils_Array::value('is_pledge_start_date_editable', $pledgeBlock)) {
340 $form->assign('start_date_editable', TRUE);
341 if ($field == 'calendar_month') {
342 $form->assign('is_date', FALSE);
343 $form->setDefaults(array('start_date' => $value));
344 }
345 }
346 }
347 }
348 }
349 }
350
351 }