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