<?php
/*
- +--------------------------------------------------------------------+
- | CiviCRM version 4.3 |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013 |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM. |
- | |
- | CiviCRM is free software; you can copy, modify, and distribute it |
- | under the terms of the GNU Affero General Public License |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
- | |
- | CiviCRM is distributed in the hope that it will be useful, but |
- | WITHOUT ANY WARRANTY; without even the implied warranty of |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
- | See the GNU Affero General Public License for more details. |
- | |
- | You should have received a copy of the GNU Affero General Public |
- | License and the CiviCRM Licensing Exception along |
- | with this program; if not, contact CiviCRM LLC |
- | at info[AT]civicrm[DOT]org. If you have questions about the |
- | GNU Affero General Public License or the licensing of CiviCRM, |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing |
- +--------------------------------------------------------------------+
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.3 |
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC (c) 2004-2013 |
+ +--------------------------------------------------------------------+
+ | This file is a part of CiviCRM. |
+ | |
+ | CiviCRM is free software; you can copy, modify, and distribute it |
+ | under the terms of the GNU Affero General Public License |
+ | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
+ | |
+ | CiviCRM is distributed in the hope that it will be useful, but |
+ | WITHOUT ANY WARRANTY; without even the implied warranty of |
+ | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
+ | See the GNU Affero General Public License for more details. |
+ | |
+ | You should have received a copy of the GNU Affero General Public |
+ | License and the CiviCRM Licensing Exception along |
+ | with this program; if not, contact CiviCRM LLC |
+ | at info[AT]civicrm[DOT]org. If you have questions about the |
+ | GNU Affero General Public License or the licensing of CiviCRM, |
+ | see the CiviCRM license FAQ at http://civicrm.org/licensing |
+ +--------------------------------------------------------------------+
*/
/**
$this->add('text', 'title', ts('Find'), $attributes);
- $financial_account = CRM_Contribute_PseudoConstant::financialType( );
- foreach($financial_account as $contributionId => $contributionName) {
- $this->addElement('checkbox', "financial_type_id[$contributionId]", 'Financial Type', $contributionName);
+ $financial_account = CRM_Contribute_PseudoConstant::financialType( );
+ foreach($financial_account as $contributionId => $contributionName) {
+ $this->addElement('checkbox', "financial_type_id[$contributionId]", 'Financial Type', $contributionName);
}
CRM_Campaign_BAO_Campaign::addCampaignInComponentSearch($this);
$parent = $this->controller->getParent();
$parent->set('searchResult', 1);
if (!empty($params)) {
- $fields = array( 'title', 'financial_type_id', 'campaign_id' );
+ $fields = array( 'title', 'financial_type_id', 'campaign_id' );
foreach ($fields as $field) {
if (isset($params[$field]) &&
!CRM_Utils_System::isNull($params[$field])
);
$row['action'] = CRM_Core_Action::formLink(self::links($componentId,
- $componentAction,
- $qfKey,
- $componentContext
- ),
- $mask, $actions
+ $componentAction,
+ $qfKey,
+ $componentContext
+ ),
+ $mask, $actions
);
$row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ?
- $result->contact_sub_type : $result->contact_type, FALSE, $result->contact_id
+ $result->contact_sub_type : $result->contact_type, FALSE, $result->contact_id
);
if (CRM_Utils_Array::value('amount_level', $row)) {
'direction' => CRM_Utils_Sort::DONTCARE,
),
array('name' => ts('Type'),
- 'sort' => 'financial_type_id',
+ 'sort' => 'financial_type_id',
'direction' => CRM_Utils_Sort::DONTCARE,
),
array(
return $this->_query->summaryContribution($this->_context);
}
}
-//end of class