Merge pull request #15976 from eileenmcnaughton/5.20
[civicrm-core.git] / CRM / Financial / Page / Batch.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34 /**
35 * Page for displaying list of current batches
36 */
37 class CRM_Financial_Page_Batch extends CRM_Core_Page_Basic {
38
39 /**
40 * The action links that we need to display for the browse screen
41 *
42 * @var array
43 */
44 public static $_links = NULL;
45
46 /**
47 * Get BAO Name.
48 *
49 * @return string
50 * Classname of BAO.
51 */
52 public function getBAOName() {
53 return 'CRM_Batch_BAO_Batch';
54 }
55
56 /**
57 * Get links.
58 */
59 public function &links() {
60 }
61
62 /**
63 * Get name of edit form.
64 *
65 * @return string
66 * Classname of edit form.
67 */
68 public function editForm() {
69 return 'CRM_Financial_Form_FinancialBatch';
70 }
71
72 /**
73 * Get edit form name.
74 *
75 * @return string
76 * name of this page.
77 */
78 public function editName() {
79 return ts('Accounting Batch Processing');
80 }
81
82 /**
83 * Get user context.
84 *
85 * @param null $mode
86 *
87 * @return string
88 * user context.
89 */
90 public function userContext($mode = NULL) {
91 return CRM_Utils_System::currentPath();
92 }
93
94 /**
95 * Browse all entities.
96 */
97 public function browse() {
98 $status = CRM_Utils_Request::retrieve('status', 'Positive', CRM_Core_DAO::$_nullObject, FALSE, 1);
99 $this->assign('status', $status);
100 $this->search();
101 }
102
103 public function search() {
104 if ($this->_action & (CRM_Core_Action::ADD |
105 CRM_Core_Action::UPDATE |
106 CRM_Core_Action::DELETE
107 )
108 ) {
109 return;
110 }
111
112 $form = new CRM_Core_Controller_Simple('CRM_Financial_Form_Search', ts('Search Batches'), CRM_Core_Action::ADD);
113 $form->setEmbedded(TRUE);
114 $form->setParent($this);
115 $form->process();
116 $form->run();
117 }
118
119 }