phpcs - Fix error, "CONST keyword must be lowercase; expected const but found CONST"
[civicrm-core.git] / CRM / Event / Form / SearchEvent.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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_Event_Form_SearchEvent extends CRM_Core_Form {
36
0cf587a7
EM
37 /**
38 * @return array
39 */
6a488035
TO
40 function setDefaultValues() {
41 $defaults = array();
42 $defaults['eventsByDates'] = 0;
43
44 $this->_showHide = new CRM_Core_ShowHideBlocks();
a7488080 45 if (empty($defaults['eventsByDates'])) {
6a488035
TO
46 $this->_showHide->addHide('id_fromToDates');
47 }
48
49 $this->_showHide->addToTemplate();
50 return $defaults;
51 }
52
53 /**
c490a46a 54 * Build the form object
6a488035
TO
55 *
56 * @access public
57 *
58 * @return void
59 */
60 public function buildQuickForm() {
61 $this->add('text', 'title', ts('Find'),
62 array(CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'title'))
63 );
64
65 $event_type = CRM_Core_OptionGroup::values('event_type', FALSE);
66
67 foreach ($event_type as $eventId => $eventName) {
68 $this->addElement('checkbox', "event_type_id[$eventId]", 'Event Type', $eventName);
69 }
70
71 $eventsByDates = array();
72 $searchOption = array(ts('Show Current and Upcoming Events'), ts('Search All or by Date Range'));
73 $this->addRadio('eventsByDates', ts('Events by Dates'), $searchOption, array('onclick' => "return showHideByValue('eventsByDates','1','id_fromToDates','block','radio',true);"), "<br />");
74
75 $this->addDate('start_date', ts('From'), FALSE, array('formatType' => 'searchDate'));
76 $this->addDate('end_date', ts('To'), FALSE, array('formatType' => 'searchDate'));
77
78 CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($this);
79
80 $this->addButtons(array(
81 array(
82 'type' => 'refresh',
83 'name' => ts('Search'),
84 'isDefault' => TRUE,
85 ),
86 ));
87 }
88
89 function postProcess() {
90 $params = $this->controller->exportValues($this->_name);
91 $parent = $this->controller->getParent();
92 $parent->set('searchResult', 1);
93 if (!empty($params)) {
94 $fields = array('title', 'event_type_id', 'start_date', 'end_date', 'eventsByDates', 'campaign_id');
95 foreach ($fields as $field) {
96 if (isset($params[$field]) &&
97 !CRM_Utils_System::isNull($params[$field])
98 ) {
99 if (substr($field, -4) == 'date') {
100 $time = ($field == 'end_date') ? '235959' : NULL;
101 $parent->set($field, CRM_Utils_Date::processDate($params[$field], $time));
102 }
103 else {
104 $parent->set($field, $params[$field]);
105 }
106 }
107 else {
108 $parent->set($field, NULL);
109 }
110 }
111 }
112 }
113}
114