From d3765deb78bb3d70c40595e1717b5ce9a5a40935 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sat, 24 Jun 2023 20:36:40 -0500 Subject: [PATCH] Switch to autoLinks for PaymentProcessor page --- CRM/Admin/Page/PaymentProcessor.php | 43 ----------------------------- 1 file changed, 43 deletions(-) diff --git a/CRM/Admin/Page/PaymentProcessor.php b/CRM/Admin/Page/PaymentProcessor.php index febc20e15a..523262b6d3 100644 --- a/CRM/Admin/Page/PaymentProcessor.php +++ b/CRM/Admin/Page/PaymentProcessor.php @@ -22,13 +22,6 @@ use Civi\Api4\PaymentProcessor; */ class CRM_Admin_Page_PaymentProcessor extends CRM_Core_Page_Basic { - /** - * The action links that we need to display for the browse screen. - * - * @var array - */ - public static $_links = NULL; - /** * Get BAO Name. * @@ -39,42 +32,6 @@ class CRM_Admin_Page_PaymentProcessor extends CRM_Core_Page_Basic { return 'CRM_Financial_BAO_PaymentProcessor'; } - /** - * Get action Links. - * - * @return array - * (reference) of action links - */ - public function &links() { - if (!(self::$_links)) { - self::$_links = [ - CRM_Core_Action::UPDATE => [ - 'name' => ts('Edit'), - 'url' => 'civicrm/admin/paymentProcessor/edit', - 'qs' => 'action=update&id=%%id%%&reset=1', - 'title' => ts('Edit Payment Processor'), - ], - CRM_Core_Action::DISABLE => [ - 'name' => ts('Disable'), - 'ref' => 'crm-enable-disable', - 'title' => ts('Disable Payment Processor'), - ], - CRM_Core_Action::ENABLE => [ - 'name' => ts('Enable'), - 'ref' => 'crm-enable-disable', - 'title' => ts('Enable Payment Processor'), - ], - CRM_Core_Action::DELETE => [ - 'name' => ts('Delete'), - 'url' => 'civicrm/admin/paymentProcessor/edit', - 'qs' => 'action=delete&id=%%id%%', - 'title' => ts('Delete Payment Processor'), - ], - ]; - } - return self::$_links; - } - /** * Run the page. * -- 2.25.1