INFRA-132 - Civi - PHPStorm cleanup
[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 */
00be9182 40 public function setDefaultValues() {
6a488035
TO
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 55 *
6a488035
TO
56 *
57 * @return void
58 */
59 public function buildQuickForm() {
60 $this->add('text', 'title', ts('Find'),
61 array(CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event', 'title'))
62 );
63
64 $event_type = CRM_Core_OptionGroup::values('event_type', FALSE);
65
66 foreach ($event_type as $eventId => $eventName) {
67 $this->addElement('checkbox', "event_type_id[$eventId]", 'Event Type', $eventName);
68 }
69
70 $eventsByDates = array();
71 $searchOption = array(ts('Show Current and Upcoming Events'), ts('Search All or by Date Range'));
72 $this->addRadio('eventsByDates', ts('Events by Dates'), $searchOption, array('onclick' => "return showHideByValue('eventsByDates','1','id_fromToDates','block','radio',true);"), "<br />");
73
74 $this->addDate('start_date', ts('From'), FALSE, array('formatType' => 'searchDate'));
75 $this->addDate('end_date', ts('To'), FALSE, array('formatType' => 'searchDate'));
76
77 CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($this);
78
79 $this->addButtons(array(
80 array(
81 'type' => 'refresh',
82 'name' => ts('Search'),
83 'isDefault' => TRUE,
84 ),
85 ));
86 }
87
00be9182 88 public function postProcess() {
6a488035
TO
89 $params = $this->controller->exportValues($this->_name);
90 $parent = $this->controller->getParent();
91 $parent->set('searchResult', 1);
92 if (!empty($params)) {
93 $fields = array('title', 'event_type_id', 'start_date', 'end_date', 'eventsByDates', 'campaign_id');
94 foreach ($fields as $field) {
95 if (isset($params[$field]) &&
96 !CRM_Utils_System::isNull($params[$field])
97 ) {
98 if (substr($field, -4) == 'date') {
99 $time = ($field == 'end_date') ? '235959' : NULL;
100 $parent->set($field, CRM_Utils_Date::processDate($params[$field], $time));
101 }
102 else {
103 $parent->set($field, $params[$field]);
104 }
105 }
106 else {
107 $parent->set($field, NULL);
108 }
109 }
110 }
111 }
112}