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