Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
/**
* @author Jaap Jansma <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
use CRM_Dataprocessor_ExtensionUtil as E;
class CRM_DataprocessorSearch_Form_MembershipSearch extends CRM_DataprocessorSearch_Form_AbstractSearch {
/**
* Returns the name of the default Entity
*
* @return string
*/
public function getDefaultEntity() {
return 'Membership';
}
/**
* Returns the url for view of the record action
*
* @param $row
*
* @return false|string
*/
protected function link($row) {
return CRM_Utils_System::url('civicrm/contact/view/membership', 'reset=1&id='.$row['id'].'&cid='.$row['id'].'&action=view');
}
/**
* Returns the link text for view of the record action
*
* @param $row
*
* @return false|string
*/
protected function linkText($row) {
return E::ts('View membership');
}
/**
* Checks whether the output has a valid configuration
*
* @return bool
*/
protected function isConfigurationValid() {
if (!isset($this->dataProcessorOutput['configuration']['membership_id_field'])) {
return false;
}
return true;
}
/**
* Return the data processor ID
*
* @return String
*/
protected function getDataProcessorName() {
$dataProcessorName = str_replace('civicrm/dataprocessor_membership_search/', '', CRM_Utils_System::getUrlPath());
return $dataProcessorName;
}
/**
* Returns the name of the output for this search
*
* @return string
*/
protected function getOutputName() {
return 'membership_search';
}
/**
* Returns the name of the ID field in the dataset.
*
* @return string
*/
protected function getIdFieldName() {
return $this->dataProcessorOutput['configuration']['membership_id_field'];
}
/**
* @return string
*/
protected function getEntityTable() {
return 'civicrm_membership';
}
/**
* Returns whether we want to use the prevnext cache.
* @return bool
*/
protected function usePrevNextCache() {
return false;
}
/**
* Builds the list of tasks or actions that a searcher can perform on a result set.
*
* @return array
*/
public function buildTaskList() {
if (!$this->_taskList) {
$taskParams = [];
$this->_taskList = CRM_Member_Task::permissionedTaskTitles(CRM_Core_Permission::getPermission(), $taskParams);
}
return $this->_taskList;
}
/**
* Return altered rows
*
* Save the ids into the queryParams value. So that when an action is done on the selected record
* or on all records, the queryParams will hold all the activity ids so that in the next step only the selected record, or the first
* 50 records are populated.
*
* @param array $rows
* @param array $ids
*
*/
protected function alterRows(&$rows, $ids) {
$this->entityIDs = $ids;
$this->_queryParams[0] = array(
'membership_id',
'=',
array(
'IN' => $this->entityIDs,
),
0,
0
);
$this->controller->set('queryParams', $this->_queryParams);
}