Merge pull request #20909 from eileenmcnaughton/index
[civicrm-core.git] / CRM / Grant / 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 11
6a488035 12/**
31aaf096
MW
13 * Class for grant form task actions.
14 * FIXME: This needs refactoring to properly inherit from CRM_Core_Form_Task and share more functions.
6a488035 15 */
31aaf096 16class CRM_Grant_Form_Task extends CRM_Core_Form_Task {
6a488035
TO
17
18 /**
fe482240 19 * The array that holds all the grant ids.
6a488035
TO
20 *
21 * @var array
22 */
23 protected $_grantIds;
24
25 /**
fe482240 26 * Build all the data structures needed to build the form.
6a488035
TO
27 *
28 * @param
29 *
30 * @return void
95ea96be 31 */
608e6658 32 public function preProcess() {
6a488035
TO
33 self::preProcessCommon($this);
34 }
35
e0ef6999 36 /**
2d09a0c3 37 * @param \CRM_Core_Form_Task $form
38 *
39 * @throws \CRM_Core_Exception
e0ef6999 40 */
2b089ce1 41 public static function preProcessCommon(&$form) {
be2fb01f 42 $form->_grantIds = [];
6a488035 43
2d09a0c3 44 $values = $form->getSearchFormValues();
6a488035
TO
45
46 $form->_task = $values['task'];
7b9bce60
MW
47 $tasks = CRM_Grant_Task::tasks();
48 if (!array_key_exists($form->_task, $tasks)) {
49 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
50 }
6a488035 51
56752ec0 52 $ids = $form->getSelectedIDs($values);
53
54 if (!$ids) {
6a488035 55 $queryParams = $form->get('queryParams');
1afc557a 56 $sortOrder = NULL;
353ffa53 57 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 58 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
6a488035
TO
59 }
60 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
61 CRM_Contact_BAO_Query::MODE_GRANT
62 );
63 $query->_distinctComponentClause = ' civicrm_grant.id';
64 $query->_groupByComponentClause = ' GROUP BY civicrm_grant.id ';
65 $result = $query->searchQuery(0, 0, $sortOrder);
66 while ($result->fetch()) {
67 $ids[] = $result->grant_id;
68 }
69 }
70
71 if (!empty($ids)) {
72 $form->_componentClause = ' civicrm_grant.id IN ( ' . implode(',', $ids) . ' ) ';
73 $form->assign('totalSelectedGrants', count($ids));
74 }
75
76 $form->_grantIds = $form->_componentIds = $ids;
77
188bf7c3 78 $form->setNextUrl('grant');
6a488035
TO
79 }
80
81 /**
82 * Given the grant id, compute the contact id
83 * since its used for things like send email
84 */
85 public function setContactIDs() {
5d0cc3e0 86 $this->_contactIds = CRM_Core_DAO::getContactIDsFromComponent($this->_grantIds,
6a488035
TO
87 'civicrm_grant'
88 );
89 }
90
91 /**
fe482240 92 * Simple shell that derived classes can call to add buttons to.
6a488035
TO
93 * the form with a customized title for the main Submit
94 *
85511635
TO
95 * @param string $title
96 * Title of the main button.
77b97be7
EM
97 * @param string $nextType
98 * @param string $backType
99 *
ea3ddccf 100 * @param bool $submitOnce
6a488035 101 */
00be9182 102 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f 103 $this->addButtons([
7e8c8317
SL
104 [
105 'type' => $nextType,
106 'name' => $title,
107 'isDefault' => TRUE,
108 ],
109 [
110 'type' => $backType,
111 'name' => ts('Cancel'),
112 ],
113 ]);
6a488035 114 }
96025800 115
6a488035 116}