Merge pull request #15595 from eileenmcnaughton/dedupe3
[civicrm-core.git] / CRM / Group / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2020 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2020
32 * $Id$
33 *
34 */
35 class CRM_Group_Form_Search extends CRM_Core_Form {
36
37 public function preProcess() {
38 parent::preProcess();
39
40 CRM_Core_Resources::singleton()->addPermissions('edit groups');
41 }
42
43 /**
44 * @return array
45 */
46 public function setDefaultValues() {
47 $defaults = [];
48 $defaults['group_status[1]'] = 1;
49 return $defaults;
50 }
51
52 public function buildQuickForm() {
53 $this->add('text', 'title', ts('Find'),
54 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title')
55 );
56
57 $this->add('text', 'created_by', ts('Created By'),
58 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title')
59 );
60
61 $groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE);
62 $config = CRM_Core_Config::singleton();
63 if ($config->userFramework == 'Joomla') {
64 unset($groupTypes['Access Control']);
65 }
66
67 $this->addCheckBox('group_type_search',
68 ts('Type'),
69 $groupTypes,
70 NULL, NULL, NULL, NULL, '&nbsp;&nbsp;&nbsp;'
71 );
72
73 $this->add('select', 'visibility', ts('Visibility'),
74 ['' => ts('- any visibility -')] + CRM_Core_SelectValues::ufVisibility(TRUE)
75 );
76
77 $groupStatuses = [ts('Enabled') => 1, ts('Disabled') => 2];
78 $this->addCheckBox('group_status',
79 ts('Status'),
80 $groupStatuses,
81 NULL, NULL, NULL, NULL, '&nbsp;&nbsp;&nbsp;'
82 );
83
84 $componentModes = CRM_Contact_Form_Search::getModeSelect();
85 if (count($componentModes) > 1) {
86 $this->add('select',
87 'component_mode',
88 ts('View Results As'),
89 $componentModes,
90 FALSE,
91 ['class' => 'crm-select2']
92 );
93 }
94
95 $this->addButtons([
96 [
97 'type' => 'refresh',
98 'name' => ts('Search'),
99 'isDefault' => TRUE,
100 ],
101 ]);
102
103 parent::buildQuickForm();
104 $this->assign('suppressForm', TRUE);
105 }
106
107 public function postProcess() {
108 $params = $this->controller->exportValues($this->_name);
109 $parent = $this->controller->getParent();
110 if (!empty($params)) {
111 $fields = ['title', 'created_by', 'group_type', 'visibility', 'active_status', 'inactive_status', 'component_mode'];
112 foreach ($fields as $field) {
113 if (isset($params[$field]) &&
114 !CRM_Utils_System::isNull($params[$field])
115 ) {
116 $parent->set($field, $params[$field]);
117 }
118 else {
119 $parent->set($field, NULL);
120 }
121 }
122 }
123 }
124
125 }