File: /home/qirgxuo4hkuv/public_html/shovago.com/wp-content/plugins/pm-gateway/index.php
<?php
/*
Plugin Name: Perfect Money
Plugin URI: http://perfectmoney.is
Version: 0.1
*/
add_action('plugins_loaded', 'woocommerce_pm_init', 0);
function woocommerce_pm_init(){
if(!class_exists('WC_Payment_Gateway')) { return; }
$plugin_dir = plugin_dir_path(__FILE__);
require_once $plugin_dir . 'gateway-pm.php';
/**
* Add the Gateway to WooCommerce
**/
function add_pm_gateway($methods) {
$methods[] = 'WC_Gateway_Pm';
return $methods;
}
add_filter('woocommerce_payment_gateways', 'add_pm_gateway' );
}