X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FFinancial%2FForm%2FSearch.php;h=d56c502170efc0425156203cc848bbf9dbc30118;hb=8616758a02e868d4cb837df3883bd8f0eace96f9;hp=557713df2e306717f6a7bd642a58c2125f6cf8a7;hpb=845bc17a66f2ef2ca7c819fbe99ec646f0d42634;p=civicrm-core.git diff --git a/CRM/Financial/Form/Search.php b/CRM/Financial/Form/Search.php index 557713df2e..d56c502170 100644 --- a/CRM/Financial/Form/Search.php +++ b/CRM/Financial/Form/Search.php @@ -1,7 +1,7 @@ _batchStatus = CRM_Utils_Request::retrieve('batchStatus', 'Positive', CRM_Core_DAO::$_nullObject, FALSE, NULL); $this->assign('batchStatus', $this->_batchStatus); } @@ -44,7 +44,7 @@ class CRM_Financial_Form_Search extends CRM_Core_Form { /** * @return array */ - function setDefaultValues() { + public function setDefaultValues() { $defaults = array(); $status = CRM_Utils_Request::retrieve('status', 'Positive', CRM_Core_DAO::$_nullObject, FALSE, 1); $defaults['batch_update'] = $status; @@ -55,7 +55,8 @@ class CRM_Financial_Form_Search extends CRM_Core_Form { } public function buildQuickForm() { - CRM_Core_Resources::singleton()->addScriptFile('civicrm', 'packages/jquery/plugins/jquery.redirect.min.js', 0, 'html-header'); + CRM_Core_Resources::singleton() + ->addScriptFile('civicrm', 'packages/jquery/plugins/jquery.redirect.min.js', 0, 'html-header'); $attributes = CRM_Core_DAO::getAttribute('CRM_Batch_DAO_Batch'); $attributes['total']['class'] = $attributes['item_count']['class'] = 'number'; $this->add('text', 'title', ts('Batch Name'), $attributes['title']); @@ -66,20 +67,20 @@ class CRM_Financial_Form_Search extends CRM_Core_Form { 'status_id', ts('Batch Status'), array( - '' => ts('- any -' ), + '' => ts('- any -'), array_search('Open', $batchStatus) => ts('Open'), array_search('Closed', $batchStatus) => ts('Closed'), array_search('Exported', $batchStatus) => ts('Exported'), ), - false + FALSE ); $this->add( 'select', 'payment_instrument_id', ts('Payment Instrument'), - array('' => ts('- any -' )) + CRM_Contribute_PseudoConstant::paymentInstrument(), - false + array('' => ts('- any -')) + CRM_Contribute_PseudoConstant::paymentInstrument(), + FALSE ); $this->add('text', 'total', ts('Total Amount'), $attributes['total']); @@ -98,10 +99,10 @@ class CRM_Financial_Form_Search extends CRM_Core_Form { $this->add('select', 'batch_update', - ts('Task' ), + ts('Task'), array('' => ts('- actions -')) + $batchAction); - $this->add('submit','submit', ts('Go'), + $this->add('submit', 'submit', ts('Go'), array( 'class' => 'crm-form-submit', 'id' => 'Go', @@ -113,17 +114,17 @@ class CRM_Financial_Form_Search extends CRM_Core_Form { 'type' => 'refresh', 'name' => ts('Search'), 'isDefault' => TRUE, - ) + ), ) ); parent::buildQuickForm(); } - function postProcess() { + public function postProcess() { $batchIds = array(); foreach ($_POST as $key => $value) { - if (substr($key,0,6) == "check_") { - $batch = explode("_",$key); + if (substr($key, 0, 6) == "check_") { + $batch = explode("_", $key); $batchIds[] = $batch[1]; } } @@ -132,4 +133,3 @@ class CRM_Financial_Form_Search extends CRM_Core_Form { } } } -