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