INFRA-132 add full stop after comments
[civicrm-core.git] / CRM / Admin / Page / PaymentProcessor.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Page for displaying list of payment processors
38 */
39class CRM_Admin_Page_PaymentProcessor extends CRM_Core_Page_Basic {
40
41 /**
eceb18cc 42 * The action links that we need to display for the browse screen.
6a488035
TO
43 *
44 * @var array
6a488035
TO
45 */
46 static $_links = NULL;
47
48 /**
eceb18cc 49 * Get BAO Name.
6a488035 50 *
a6c01b45
CW
51 * @return string
52 * Classname of BAO.
6a488035 53 */
00be9182 54 public function getBAOName() {
6a488035
TO
55 return 'CRM_Financial_BAO_PaymentProcessor';
56 }
57
58 /**
eceb18cc 59 * Get action Links.
6a488035 60 *
a6c01b45
CW
61 * @return array
62 * (reference) of action links
6a488035 63 */
00be9182 64 public function &links() {
6a488035
TO
65 if (!(self::$_links)) {
66 self::$_links = array(
67 CRM_Core_Action::UPDATE => array(
68 'name' => ts('Edit'),
69 'url' => 'civicrm/admin/paymentProcessor',
70 'qs' => 'action=update&id=%%id%%&reset=1',
71 'title' => ts('Edit Payment Processor'),
72 ),
73 CRM_Core_Action::DISABLE => array(
74 'name' => ts('Disable'),
4d17a233 75 'ref' => 'crm-enable-disable',
6a488035
TO
76 'title' => ts('Disable Payment Processor'),
77 ),
78 CRM_Core_Action::ENABLE => array(
79 'name' => ts('Enable'),
4d17a233 80 'ref' => 'crm-enable-disable',
6a488035
TO
81 'title' => ts('Enable Payment Processor'),
82 ),
83 CRM_Core_Action::DELETE => array(
84 'name' => ts('Delete'),
85 'url' => 'civicrm/admin/paymentProcessor',
86 'qs' => 'action=delete&id=%%id%%',
87 'title' => ts('Delete Payment Processor'),
88 ),
89 );
90 }
91 return self::$_links;
92 }
93
94 /**
95 * Run the page.
96 *
97 * This method is called after the page is created. It checks for the
98 * type of action and executes that action.
99 * Finally it calls the parent's run method.
100 *
101 * @return void
6a488035 102 */
00be9182 103 public function run() {
6a488035
TO
104 // set title and breadcrumb
105 CRM_Utils_System::setTitle(ts('Settings - Payment Processor'));
71d085fe 106 //CRM-15546
353ffa53
TO
107 $paymentProcessorTypes = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_PaymentProcessor', 'payment_processor_type_id', array(
108 'labelColumn' => 'name',
389bcebf 109 'flip' => 1,
353ffa53 110 ));
71d085fe 111 $this->assign('defaultPaymentProcessorType', $paymentProcessorTypes['PayPal']);
353ffa53
TO
112 $breadCrumb = array(
113 array(
114 'title' => ts('Administration'),
6a488035 115 'url' => CRM_Utils_System::url('civicrm/admin',
353ffa53 116 'reset=1'
6a488035 117 ),
389bcebf 118 ),
353ffa53 119 );
6a488035
TO
120 CRM_Utils_System::appendBreadCrumb($breadCrumb);
121 return parent::run();
122 }
123
124 /**
125 * Browse all payment processors.
126 *
77b97be7
EM
127 * @param null $action
128 *
6a488035 129 * @return void
6a488035 130 */
00be9182 131 public function browse($action = NULL) {
6a488035
TO
132 // get all custom groups sorted by weight
133 $paymentProcessor = array();
134 $dao = new CRM_Financial_DAO_PaymentProcessor();
353ffa53
TO
135 $dao->is_test = 0;
136 $dao->domain_id = CRM_Core_Config::domainID();
6a488035
TO
137 $dao->orderBy('name');
138 $dao->find();
139
140 while ($dao->fetch()) {
141 $paymentProcessor[$dao->id] = array();
142 CRM_Core_DAO::storeValues($dao, $paymentProcessor[$dao->id]);
8ef12e64 143 $paymentProcessor[$dao->id]['payment_processor_type'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType',
6a488035
TO
144 $paymentProcessor[$dao->id]['payment_processor_type_id']);
145
146 // form all action links
147 $action = array_sum(array_keys($this->links()));
148
149 // update enable/disable links.
150 if ($dao->is_active) {
151 $action -= CRM_Core_Action::ENABLE;
152 }
153 else {
154 $action -= CRM_Core_Action::DISABLE;
155 }
156
157 $paymentProcessor[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
87dab4a4
AH
158 array('id' => $dao->id),
159 ts('more'),
160 FALSE,
161 'paymentProcessor.manage.action',
162 'PaymentProcessor',
163 $dao->id
6a488035 164 );
8ef12e64 165 $paymentProcessor[$dao->id]['financialAccount'] = CRM_Financial_BAO_FinancialTypeAccount::getFinancialAccount($dao->id, 'civicrm_payment_processor');
6a488035
TO
166 }
167
168 $this->assign('rows', $paymentProcessor);
169 }
170
171 /**
eceb18cc 172 * Get name of edit form.
6a488035 173 *
a6c01b45
CW
174 * @return string
175 * Classname of edit form.
6a488035 176 */
00be9182 177 public function editForm() {
6a488035
TO
178 return 'CRM_Admin_Form_PaymentProcessor';
179 }
180
181 /**
eceb18cc 182 * Get edit form name.
6a488035 183 *
a6c01b45
CW
184 * @return string
185 * name of this page.
6a488035 186 */
00be9182 187 public function editName() {
6a488035
TO
188 return 'Payment Processors';
189 }
190
191 /**
192 * Get user context.
193 *
da6b46f4
EM
194 * @param null $mode
195 *
a6c01b45
CW
196 * @return string
197 * user context.
6a488035 198 */
00be9182 199 public function userContext($mode = NULL) {
6a488035
TO
200 return 'civicrm/admin/paymentProcessor';
201 }
96025800 202
6a488035 203}