Update Copywrite year to be 2019
[civicrm-core.git] / CRM / Admin / Page / PaymentProcessorType.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
ce064e4f 35 * Page for displaying list of payment processors.
6a488035
TO
36 */
37class CRM_Admin_Page_PaymentProcessorType 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_Financial_BAO_PaymentProcessorType';
54 }
55
56 /**
eceb18cc 57 * Get action Links.
6a488035 58 *
a6c01b45
CW
59 * @return array
60 * (reference) of action links
6a488035 61 */
00be9182 62 public function &links() {
6a488035
TO
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'),
4d17a233 73 'ref' => 'crm-enable-disable',
6a488035
TO
74 'title' => ts('Disable Payment ProcessorType'),
75 ),
76 CRM_Core_Action::ENABLE => array(
77 'name' => ts('Enable'),
4d17a233 78 'ref' => 'crm-enable-disable',
6a488035
TO
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 /**
eceb18cc 93 * Get name of edit form.
6a488035 94 *
a6c01b45
CW
95 * @return string
96 * Classname of edit form.
6a488035 97 */
00be9182 98 public function editForm() {
6a488035
TO
99 return 'CRM_Admin_Form_PaymentProcessorType';
100 }
101
102 /**
eceb18cc 103 * Get edit form name.
6a488035 104 *
a6c01b45
CW
105 * @return string
106 * name of this page.
6a488035 107 */
00be9182 108 public function editName() {
6a488035
TO
109 return 'Payment Processor Type';
110 }
111
112 /**
113 * Get user context.
114 *
dd244018
EM
115 * @param null $mode
116 *
a6c01b45
CW
117 * @return string
118 * user context.
6a488035 119 */
00be9182 120 public function userContext($mode = NULL) {
6a488035
TO
121 return 'civicrm/admin/paymentProcessorType';
122 }
96025800 123
6a488035 124}