Merge pull request #12736 from calbasi/master
[civicrm-core.git] / CRM / Admin / Page / PaymentProcessorType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * Page for displaying list of payment processors.
36 */
37 class CRM_Admin_Page_PaymentProcessorType 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 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_Financial_BAO_PaymentProcessorType';
54 }
55
56 /**
57 * Get action Links.
58 *
59 * @return array
60 * (reference) of action links
61 */
62 public function &links() {
63 if (!(self::$_links)) {
64 self::$_links = array(
65 CRM_Core_Action::UPDATE => array(
66 'name' => ts('Edit'),
67 'url' => 'civicrm/admin/paymentProcessorType',
68 'qs' => 'action=update&id=%%id%%&reset=1',
69 'title' => ts('Edit Payment ProcessorType'),
70 ),
71 CRM_Core_Action::DISABLE => array(
72 'name' => ts('Disable'),
73 'ref' => 'crm-enable-disable',
74 'title' => ts('Disable Payment ProcessorType'),
75 ),
76 CRM_Core_Action::ENABLE => array(
77 'name' => ts('Enable'),
78 'ref' => 'crm-enable-disable',
79 'title' => ts('Enable Payment ProcessorType'),
80 ),
81 CRM_Core_Action::DELETE => array(
82 'name' => ts('Delete'),
83 'url' => 'civicrm/admin/paymentProcessorType',
84 'qs' => 'action=delete&id=%%id%%',
85 'title' => ts('Delete Payment ProcessorType'),
86 ),
87 );
88 }
89 return self::$_links;
90 }
91
92 /**
93 * Get name of edit form.
94 *
95 * @return string
96 * Classname of edit form.
97 */
98 public function editForm() {
99 return 'CRM_Admin_Form_PaymentProcessorType';
100 }
101
102 /**
103 * Get edit form name.
104 *
105 * @return string
106 * name of this page.
107 */
108 public function editName() {
109 return 'Payment Processor Type';
110 }
111
112 /**
113 * Get user context.
114 *
115 * @param null $mode
116 *
117 * @return string
118 * user context.
119 */
120 public function userContext($mode = NULL) {
121 return 'civicrm/admin/paymentProcessorType';
122 }
123
124 }