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