Merge pull request #20907 from demeritcowboy/report-entitylabel
[civicrm-core.git] / CRM / Pledge / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
31aaf096
MW
19 * Class for pledge form task actions.
20 * FIXME: This needs refactoring to properly inherit from CRM_Core_Form_Task and share more functions.
6a488035 21 */
31aaf096 22class CRM_Pledge_Form_Task extends CRM_Core_Form_Task {
6a488035
TO
23
24 /**
fe482240 25 * The array that holds all the pledge ids.
6a488035
TO
26 *
27 * @var array
28 */
29 protected $_pledgeIds;
30
31 /**
fe482240 32 * Build all the data structures needed to build the form.
6a488035 33 */
00be9182 34 public function preProcess() {
6a488035
TO
35 self::preProcessCommon($this);
36 }
37
ffd93213 38 /**
167bcb5f 39 * Common pre-processing.
40 *
188bf7c3 41 * @param CRM_Pledge_Form_Task $form
ffd93213 42 */
2b089ce1 43 public static function preProcessCommon(&$form) {
be2fb01f 44 $form->_pledgeIds = [];
6a488035
TO
45
46 $values = $form->controller->exportValues('Search');
47
48 $form->_task = $values['task'];
6a488035 49
56752ec0 50 $ids = $form->getSelectedIDs($values);
51
52 if (!$ids) {
6a488035 53 $queryParams = $form->get('queryParams');
098201d8 54 $sortOrder = NULL;
353ffa53 55 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 56 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
6a488035
TO
57 }
58 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
59 CRM_Contact_BAO_Query::MODE_PLEDGE
60 );
61 $query->_distinctComponentClause = ' civicrm_pledge.id';
62 $query->_groupByComponentClause = ' GROUP BY civicrm_pledge.id ';
63
64 $result = $query->searchQuery(0, 0, $sortOrder);
65 while ($result->fetch()) {
66 $ids[] = $result->pledge_id;
67 }
68 }
69
70 if (!empty($ids)) {
71 $form->_componentClause = ' civicrm_pledge.id IN ( ' . implode(',', $ids) . ' ) ';
72 $form->assign('totalSelectedPledges', count($ids));
73 }
74
75 $form->_pledgeIds = $form->_componentIds = $ids;
188bf7c3 76 $form->setNextUrl('pledge');
6a488035
TO
77 }
78
79 /**
80 * Given the signer id, compute the contact id
81 * since its used for things like send email
82 */
83 public function setContactIDs() {
ae18f7d8 84 $this->_contactIds = CRM_Core_DAO::getContactIDsFromComponent($this->_pledgeIds,
6a488035
TO
85 'civicrm_pledge'
86 );
87 }
88
89 /**
100fef9d 90 * Simple shell that derived classes can call to add buttons to
6a488035
TO
91 * the form with a customized title for the main Submit
92 *
3a1617b6
TO
93 * @param string $title
94 * Title of the main button.
dd244018
EM
95 * @param string $nextType
96 * @param string $backType
97 * @param bool $submitOnce
6a488035 98 */
00be9182 99 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f
CW
100 $this->addButtons([
101 [
6a488035
TO
102 'type' => $nextType,
103 'name' => $title,
104 'isDefault' => TRUE,
be2fb01f
CW
105 ],
106 [
6a488035
TO
107 'type' => $backType,
108 'name' => ts('Cancel'),
be2fb01f 109 ],
c86d4e7c 110 ]);
6a488035 111 }
96025800 112
6a488035 113}