Skip to content

Commit 9966921

Browse files
committed
Update version number
1 parent 4bb2309 commit 9966921

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

class-woocommerce-gateway-monei.php

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @author MONEI
66
* @category Core
77
* @package Woocommerce_Gateway_Monei
8-
* @version 6.3.7
8+
* @version 6.3.8
99
*/
1010

1111
use Monei\Core\ContainerProvider;
@@ -25,7 +25,7 @@ final class Woocommerce_Gateway_Monei {
2525
*
2626
* @var string
2727
*/
28-
public $version = '6.3.7';
28+
public $version = '6.3.8';
2929

3030
/**
3131
* The single instance of the class.
@@ -324,7 +324,16 @@ private function get_setting_with_default( $key, $params ) {
324324
*/
325325
public function plugins_loaded() {
326326
add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
327-
}
327+
add_filter('plugin_action_links_' . plugin_basename(__FILE__), array( $this, 'plugin_action_links' ) );
328+
329+
330+
}
331+
public function plugin_action_links( $links ) {
332+
333+
$links[] = '<a href="'. admin_url( 'admin.php?page=wc-settings&tab=monei_settings' ). '">'. __( 'Settings', 'woocommerce' ). '</a>';
334+
335+
return $links;
336+
}
328337

329338
/**
330339
* Add Monei Gateways.

0 commit comments

Comments
 (0)