[NFC] Remove some more of the old cvs blocks
[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 /**
c490a46a 37 * @param CRM_Core_Form $form
e0ef6999 38 */
2b089ce1 39 public static function preProcessCommon(&$form) {
be2fb01f 40 $form->_grantIds = [];
6a488035 41
6c1b8a2b 42 $values = $form->controller->exportValues($form->get('searchFormName'));
6a488035
TO
43
44 $form->_task = $values['task'];
7b9bce60
MW
45 $tasks = CRM_Grant_Task::tasks();
46 if (!array_key_exists($form->_task, $tasks)) {
47 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
48 }
49 $form->assign('taskName', $tasks[$form->_task]);
6a488035 50
be2fb01f 51 $ids = [];
6a488035
TO
52 if ($values['radio_ts'] == 'ts_sel') {
53 foreach ($values as $name => $value) {
54 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
55 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
56 }
57 }
58 }
59 else {
60 $queryParams = $form->get('queryParams');
1afc557a 61 $sortOrder = NULL;
353ffa53 62 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 63 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
6a488035
TO
64 }
65 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
66 CRM_Contact_BAO_Query::MODE_GRANT
67 );
68 $query->_distinctComponentClause = ' civicrm_grant.id';
69 $query->_groupByComponentClause = ' GROUP BY civicrm_grant.id ';
70 $result = $query->searchQuery(0, 0, $sortOrder);
71 while ($result->fetch()) {
72 $ids[] = $result->grant_id;
73 }
74 }
75
76 if (!empty($ids)) {
77 $form->_componentClause = ' civicrm_grant.id IN ( ' . implode(',', $ids) . ' ) ';
78 $form->assign('totalSelectedGrants', count($ids));
79 }
80
81 $form->_grantIds = $form->_componentIds = $ids;
82
83 //set the context for redirection for any task actions
75e38c1e 84 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
6a488035
TO
85 $urlParams = 'force=1';
86 if (CRM_Utils_Rule::qfKey($qfKey)) {
87 $urlParams .= "&qfKey=$qfKey";
88 }
89
90 $session = CRM_Core_Session::singleton();
91 $session->replaceUserContext(CRM_Utils_System::url('civicrm/grant/search', $urlParams));
92 }
93
94 /**
95 * Given the grant id, compute the contact id
96 * since its used for things like send email
97 */
98 public function setContactIDs() {
5d0cc3e0 99 $this->_contactIds = CRM_Core_DAO::getContactIDsFromComponent($this->_grantIds,
6a488035
TO
100 'civicrm_grant'
101 );
102 }
103
104 /**
fe482240 105 * Simple shell that derived classes can call to add buttons to.
6a488035
TO
106 * the form with a customized title for the main Submit
107 *
85511635
TO
108 * @param string $title
109 * Title of the main button.
77b97be7
EM
110 * @param string $nextType
111 * @param string $backType
112 *
ea3ddccf 113 * @param bool $submitOnce
6a488035 114 */
00be9182 115 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f 116 $this->addButtons([
7e8c8317
SL
117 [
118 'type' => $nextType,
119 'name' => $title,
120 'isDefault' => TRUE,
121 ],
122 [
123 'type' => $backType,
124 'name' => ts('Cancel'),
125 ],
126 ]);
6a488035 127 }
96025800 128
6a488035 129}