Merge pull request #12155 from seamuslee001/php7_2_each_membership
[civicrm-core.git] / CRM / Pledge / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
b8c71ffa 35 * This class generates task actions for CiviEvent.
6a488035
TO
36 */
37class CRM_Pledge_Form_Task extends CRM_Core_Form {
38
39 /**
fe482240 40 * The task being performed.
6a488035
TO
41 *
42 * @var int
43 */
44 protected $_task;
45
46 /**
fe482240 47 * The additional clause that we restrict the search with.
6a488035
TO
48 *
49 * @var string
50 */
51 protected $_componentClause = NULL;
52
53 /**
fe482240 54 * The array that holds all the component ids.
6a488035
TO
55 *
56 * @var array
57 */
58 protected $_componentIds;
59
60 /**
fe482240 61 * The array that holds all the pledge ids.
6a488035
TO
62 *
63 * @var array
64 */
65 protected $_pledgeIds;
66
67 /**
fe482240 68 * Build all the data structures needed to build the form.
6a488035 69 */
00be9182 70 public function preProcess() {
6a488035
TO
71 self::preProcessCommon($this);
72 }
73
ffd93213 74 /**
167bcb5f 75 * Common pre-processing.
76 *
c490a46a 77 * @param CRM_Core_Form $form
ffd93213
EM
78 * @param bool $useTable
79 */
00be9182 80 public static function preProcessCommon(&$form, $useTable = FALSE) {
6a488035
TO
81 $form->_pledgeIds = array();
82
83 $values = $form->controller->exportValues('Search');
84
85 $form->_task = $values['task'];
86 $pledgeTasks = CRM_Pledge_Task::tasks();
87 $form->assign('taskName', $pledgeTasks[$form->_task]);
88
89 $ids = array();
90 if ($values['radio_ts'] == 'ts_sel') {
91 foreach ($values as $name => $value) {
92 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
93 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
94 }
95 }
96 }
97 else {
98 $queryParams = $form->get('queryParams');
098201d8 99 $sortOrder = NULL;
353ffa53 100 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 101 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
6a488035
TO
102 }
103 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
104 CRM_Contact_BAO_Query::MODE_PLEDGE
105 );
106 $query->_distinctComponentClause = ' civicrm_pledge.id';
107 $query->_groupByComponentClause = ' GROUP BY civicrm_pledge.id ';
108
109 $result = $query->searchQuery(0, 0, $sortOrder);
110 while ($result->fetch()) {
111 $ids[] = $result->pledge_id;
112 }
113 }
114
115 if (!empty($ids)) {
116 $form->_componentClause = ' civicrm_pledge.id IN ( ' . implode(',', $ids) . ' ) ';
117 $form->assign('totalSelectedPledges', count($ids));
118 }
119
120 $form->_pledgeIds = $form->_componentIds = $ids;
121
cc28438b 122 // set the context for redirection for any task actions
6a488035
TO
123 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
124 $urlParams = 'force=1';
125 if (CRM_Utils_Rule::qfKey($qfKey)) {
126 $urlParams .= "&qfKey=$qfKey";
127 }
128
129 $session = CRM_Core_Session::singleton();
130 $session->replaceUserContext(CRM_Utils_System::url('civicrm/pledge/search', $urlParams));
131 }
132
133 /**
134 * Given the signer id, compute the contact id
135 * since its used for things like send email
136 */
137 public function setContactIDs() {
138 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_pledgeIds,
139 'civicrm_pledge'
140 );
141 }
142
143 /**
100fef9d 144 * Simple shell that derived classes can call to add buttons to
6a488035
TO
145 * the form with a customized title for the main Submit
146 *
3a1617b6
TO
147 * @param string $title
148 * Title of the main button.
dd244018
EM
149 * @param string $nextType
150 * @param string $backType
151 * @param bool $submitOnce
6a488035 152 */
00be9182 153 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
6a488035
TO
154 $this->addButtons(array(
155 array(
156 'type' => $nextType,
157 'name' => $title,
158 'isDefault' => TRUE,
159 ),
160 array(
161 'type' => $backType,
162 'name' => ts('Cancel'),
163 ),
164 )
165 );
166 }
96025800 167
6a488035 168}