7a5d2b5db65de1b418385815c1ad56b9a9706daa
[civicrm-core.git] / CRM / Contribute / Form / SearchContribution.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35 class CRM_Contribute_Form_SearchContribution extends CRM_Core_Form {
36
37 /**
38 * Build the form
39 *
40 * @access public
41 *
42 * @return void
43 */
44 public function buildQuickForm() {
45 $attributes = CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'title');
46 $attributes['style'] = 'width: 90%';
47
48 $this->add('text', 'title', ts('Find'), $attributes);
49
50 $financial_account = CRM_Contribute_PseudoConstant::financialType( );
51 foreach($financial_account as $contributionId => $contributionName) {
52 $this->addElement('checkbox', "financial_type_id[$contributionId]", 'Financial Type', $contributionName);
53 }
54
55 CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($this);
56
57 $this->addButtons(array(
58 array(
59 'type' => 'refresh',
60 'name' => ts('Search'),
61 'isDefault' => TRUE,
62 ),
63 ));
64 }
65
66 function postProcess() {
67 $params = $this->controller->exportValues($this->_name);
68 $parent = $this->controller->getParent();
69 $parent->set('searchResult', 1);
70 if (!empty($params)) {
71 $fields = array( 'title', 'financial_type_id', 'campaign_id' );
72 foreach ($fields as $field) {
73 if (isset($params[$field]) &&
74 !CRM_Utils_System::isNull($params[$field])
75 ) {
76 $parent->set($field, $params[$field]);
77 }
78 else {
79 $parent->set($field, NULL);
80 }
81 }
82 }
83 }
84 }
85