70 lines
2.4 KiB
PHP
70 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: WooCommerce Active Payments
|
|
* Plugin URI: https://www.wpdesk.net/sk/woocommerce-active-payments-plugin/
|
|
* Description: Allows to hide certain payment methods for selected shipping methods. Works great with <a href="https://www.wpdesk.net/sk/woocommerce-active-payments-shipping-plugin" target="_blank">Flexible Shipping for WooCommerce</a>.
|
|
* Version: 3.9.18
|
|
* Author: WP Desk
|
|
* Author URI: https://www.wpdesk.net/sk/woocommerce-active-payments-author/
|
|
* Text Domain: woocommerce-active-payments
|
|
* Domain Path: /lang/
|
|
* Requires at least: 6.4
|
|
* Tested up to: 6.9
|
|
* WC requires at least: 10.0
|
|
* WC tested up to: 10.4
|
|
* Requires PHP: 7.4
|
|
*
|
|
* Copyright 2017 WP Desk Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
/* Plugin release time */
|
|
$plugin_release_timestamp = '2021-11-29 10:35';
|
|
/* Plugin version */
|
|
$plugin_version = '3.9.18';
|
|
|
|
/* Plugin info */
|
|
$plugin_name = 'WooCommerce Active Payments';
|
|
$plugin_class_name = '\WPDesk\ActivePayments\Plugin';
|
|
$plugin_text_domain = 'woocommerce-active-payments';
|
|
$product_id = 'WooCommerce Active Payments';
|
|
$plugin_file = __FILE__;
|
|
$plugin_dir = __DIR__;
|
|
|
|
$requirements = array(
|
|
'php' => '7.4',
|
|
'wp' => '5.0',
|
|
'plugins' => array(
|
|
array(
|
|
'name' => 'woocommerce/woocommerce.php',
|
|
'nice_name' => 'WooCommerce',
|
|
),
|
|
),
|
|
);
|
|
|
|
add_action( 'before_woocommerce_init', function () {
|
|
if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
|
|
\Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
|
|
}
|
|
} );
|
|
|
|
require __DIR__ . '/vendor_prefixed/wpdesk/wp-plugin-flow-common/src/plugin-init-php52.php';
|