Update monero_gateway.php

This commit is contained in:
serhack 2017-08-13 15:26:02 +02:00 committed by GitHub
parent 12c8d406ea
commit 3ff512aa80

View File

@ -5,7 +5,7 @@ Plugin URI: http://monerointegrations.com
Description: Extends WooCommerce by Adding the Monero Gateway Description: Extends WooCommerce by Adding the Monero Gateway
Version: 1.0 Version: 1.0
Author: SerHack Author: SerHack
Author URI: http://serhack.me Author URI: http://monerointegrations.com
*/ */
if ( ! defined( 'ABSPATH' ) ) { if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly exit; // Exit if accessed directly
@ -16,6 +16,7 @@ function monero_init() {
/* If the class doesn't exist (== WooCommerce isn't installed), return NULL */ /* If the class doesn't exist (== WooCommerce isn't installed), return NULL */
if ( ! class_exists( 'WC_Payment_Gateway' ) ) return; if ( ! class_exists( 'WC_Payment_Gateway' ) ) return;
/* If we made it this far, then include our Gateway Class */ /* If we made it this far, then include our Gateway Class */
include_once( 'include/monero_payments.php' ); include_once( 'include/monero_payments.php' );
require_once( 'library.php'); require_once( 'library.php');
@ -28,6 +29,7 @@ function monero_init() {
} }
} }
/* /*
@ -50,7 +52,8 @@ add_action( 'admin_menu', 'monero_create_menu' );
'manage_options', 'manage_options',
'admin.php?page=wc-settings&tab=checkout&section=monero_gateway', 'admin.php?page=wc-settings&tab=checkout&section=monero_gateway',
'', '',
plugins_url( 'monero/assets/icon.png' ) plugins_url( 'monero/assets/icon.png' ),
56 // Position on menu, woocommerce has 55.5, products has 55.6
); );
} }