2014-10-23 18:16:47 +02:00
< ? php
/* Plugin Name: WooCommerce Payment Methods
2015-04-24 20:13:22 +02:00
* Plugin URI: https://vendocr.at/
* Description: <strong>Easily display your accepted payment methods from WooCommerce.</strong> Handcrafted with ♥ by <a href='https://vendocr.at/'>vendocrat</a> in Vienna.
* Version: 1.1.2
2014-10-23 18:16:47 +02:00
* Author: vendocrat
2015-04-24 20:13:22 +02:00
* Author URI: https://vendocr.at/
2014-10-23 18:16:47 +02:00
* License: vendocrat Split License
2015-04-24 20:13:22 +02:00
* License URI: https://vendocr.at/legal/licenses
2014-10-23 18:16:47 +02:00
*/
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly
// require classes
require_once ( 'classes/class-wc-payment-methods.php' );
global $vendocrat_wc_payment_methods ;
$vendocrat_wc_payment_methods = new vendocrat_WC_Payment_Methods ( __FILE__ );
2015-04-24 20:13:22 +02:00
$vendocrat_wc_payment_methods -> version = '1.1.2' ;
2014-10-23 18:16:47 +02:00
/*
* E fatto!
*/