Merge pull request #4773 from civicrm/version-fix
[civicrm-core.git] / tools / CRM / Auction / Form / SearchItem.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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
36 require_once 'CRM/Core/Form.php';
37 require_once 'CRM/Core/OptionGroup.php';
38
39 /**
40 * Class CRM_Auction_Form_SearchItem
41 */
42 class CRM_Auction_Form_SearchItem extends CRM_Core_Form {
43 /**
44 * This virtual function is used to set the default values of
45 * various form elements
46 *
47 * access public
48 *
49 * @return array reference to the array of default values
50 *
51 */
52 function setDefaultValues() {
53 $defaults = array();
54 $defaults['auctionsByDates'] = 0;
55
56 return $defaults;
57 }
58
59 /**
60 * Build the form object
61 *
62 * @access public
63 *
64 * @return void
65 */
66 public function buildQuickForm() {
67 $this->add('text', 'title', ts('Find'),
68 array(CRM_Core_DAO::getAttribute('CRM_Auction_DAO_Auction', 'title'))
69 );
70
71 $this->add('date', 'start_date', ts('From'), CRM_Core_SelectValues::date('relative'));
72 $this->addRule('start_date', ts('Select a valid Auction FROM date.'), 'qfDate');
73
74 $this->add('date', 'end_date', ts('To'), CRM_Core_SelectValues::date('relative'));
75 $this->addRule('end_date', ts('Select a valid Auction TO date.'), 'qfDate');
76
77 $this->addButtons(array(
78 array('type' => 'refresh',
79 'name' => ts('Search'),
80 'isDefault' => TRUE,
81 ),
82 ));
83 }
84
85 function postProcess() {
86 $params = $this->controller->exportValues($this->_name);
87 $parent = $this->controller->getParent();
88 $parent->set('searchResult', 1);
89 if (!empty($params)) {
90 $fields = array('title', 'item_type_id');
91 foreach ($fields as $field) {
92 if (isset($params[$field]) &&
93 !CRM_Utils_System::isNull($params[$field])
94 ) {
95 $parent->set($field, $params[$field]);
96 }
97 else {
98 $parent->set($field, NULL);
99 }
100 }
101 }
102 }
103 }
104