Merge pull request #11436 from mlutfy/4.7.29-rc-crm21431
[civicrm-core.git] / CRM / Group / Form / Search.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 */
35class CRM_Group_Form_Search extends CRM_Core_Form {
36
37 public function preProcess() {
38 parent::preProcess();
9c854386
CW
39
40 CRM_Core_Resources::singleton()->addPermissions('edit groups');
6a488035
TO
41 }
42
e0ef6999
EM
43 /**
44 * @return array
45 */
00be9182 46 public function setDefaultValues() {
6a488035
TO
47 $defaults = array();
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
7042abca 67 $this->addCheckBox('group_type_search',
6a488035
TO
68 ts('Type'),
69 $groupTypes,
70 NULL, NULL, NULL, NULL, '&nbsp;&nbsp;&nbsp;'
71 );
72
73 $this->add('select', 'visibility', ts('Visibility'),
74 array('' => ts('- any visibility -')) + CRM_Core_SelectValues::ufVisibility(TRUE)
75 );
76
77 $groupStatuses = array(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 $this->addButtons(array(
353ffa53
TO
85 array(
86 'type' => 'refresh',
87 'name' => ts('Search'),
88 'isDefault' => TRUE,
89 ),
90 ));
6a488035
TO
91
92 parent::buildQuickForm();
93 $this->assign('suppressForm', TRUE);
94 }
95
00be9182 96 public function postProcess() {
6a488035
TO
97 $params = $this->controller->exportValues($this->_name);
98 $parent = $this->controller->getParent();
99 if (!empty($params)) {
100 $fields = array('title', 'created_by', 'group_type', 'visibility', 'active_status', 'inactive_status');
101 foreach ($fields as $field) {
102 if (isset($params[$field]) &&
103 !CRM_Utils_System::isNull($params[$field])
104 ) {
105 $parent->set($field, $params[$field]);
106 }
107 else {
108 $parent->set($field, NULL);
109 }
110 }
111 }
112 }
96025800 113
6a488035 114}