151 lines
4.4 KiB
PHP
151 lines
4.4 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------+
|
|
| CiviCRM version 4.7 |
|
|
+--------------------------------------------------------------------+
|
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
|
+--------------------------------------------------------------------+
|
|
| 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 |
|
|
+--------------------------------------------------------------------+
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @package CRM
|
|
* @copyright CiviCRM LLC (c) 2004-2017
|
|
*/
|
|
|
|
|
|
/**
|
|
* Page for displaying list of financial batches
|
|
*/
|
|
class CRM_Financial_Page_BatchTransaction extends CRM_Core_Page_Basic {
|
|
/**
|
|
* The action links that we need to display for the browse screen.
|
|
*
|
|
* @var array
|
|
*/
|
|
static $_links = NULL;
|
|
static $_entityID;
|
|
|
|
static $_columnHeader = NULL;
|
|
static $_returnvalues = NULL;
|
|
|
|
/**
|
|
* Get BAO Name.
|
|
*
|
|
* @return string
|
|
* Classname of BAO.
|
|
*/
|
|
public function getBAOName() {
|
|
return 'CRM_Batch_BAO_Batch';
|
|
}
|
|
|
|
/**
|
|
* Get action Links.
|
|
*
|
|
* @return array
|
|
* (reference) of action links
|
|
*/
|
|
public function &links() {
|
|
if (!(self::$_links)) {
|
|
self::$_links = array(
|
|
'view' => array(
|
|
'name' => ts('View'),
|
|
'url' => 'civicrm/contact/view/contribution',
|
|
'qs' => 'reset=1&id=%%contid%%&cid=%%cid%%&action=view&context=contribution&selectedChild=contribute',
|
|
'title' => ts('View Contribution'),
|
|
),
|
|
'remove' => array(
|
|
'name' => ts('Remove'),
|
|
'title' => ts('Remove Transaction'),
|
|
'extra' => 'onclick = "assignRemove( %%id%%,\'' . 'remove' . '\' );"',
|
|
),
|
|
);
|
|
}
|
|
return self::$_links;
|
|
}
|
|
|
|
/**
|
|
* Run the page.
|
|
*
|
|
* This method is called after the page is created. It checks for the
|
|
* type of action and executes that action.
|
|
* Finally it calls the parent's run method.
|
|
*/
|
|
public function run() {
|
|
// get the requested action
|
|
$action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse'); // default to 'browse'
|
|
|
|
// assign vars to templates
|
|
$this->assign('action', $action);
|
|
|
|
self::$_entityID = CRM_Utils_Request::retrieve('bid', 'Positive');
|
|
$statusID = NULL;
|
|
if (isset(self::$_entityID)) {
|
|
$statusID = CRM_Core_DAO::getFieldValue('CRM_Batch_BAO_Batch', self::$_entityID, 'status_id');
|
|
}
|
|
$breadCrumb
|
|
= array(
|
|
array(
|
|
'title' => ts('Accounting Batches'),
|
|
'url' => CRM_Utils_System::url('civicrm/financial/financialbatches',
|
|
"reset=1&batchStatus=$statusID"),
|
|
),
|
|
);
|
|
|
|
CRM_Utils_System::appendBreadCrumb($breadCrumb);
|
|
$this->edit($action, self::$_entityID);
|
|
return parent::run();
|
|
}
|
|
|
|
/**
|
|
* Get name of edit form.
|
|
*
|
|
* @return string
|
|
* Classname of edit form.
|
|
*/
|
|
public function editForm() {
|
|
return 'CRM_Financial_Form_BatchTransaction';
|
|
}
|
|
|
|
/**
|
|
* Get edit form name.
|
|
*
|
|
* @return string
|
|
* name of this page.
|
|
*/
|
|
public function editName() {
|
|
return 'Batch';
|
|
}
|
|
|
|
/**
|
|
* Get user context.
|
|
*
|
|
* @param null $mode
|
|
*
|
|
* @return string
|
|
* user context.
|
|
*/
|
|
public function userContext($mode = NULL) {
|
|
return 'civicrm/batchtransaction';
|
|
}
|
|
|
|
}
|