PluginProbe
Autopay dla WooCommerce / 2.2.29
Autopay dla WooCommerce v2.2.29
2.2.30 2.2.29 2.2.28 trunk 1.0.0 1.1.0 1.2.0 1.2.1 1.2.2 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 2.0.0 2.0.1 2.1.0 2.2.0 2.2.1 2.2.11 2.2.12 2.2.13 All 46 releases
pay-wp / pay-wp.php

pay-wp.php in Autopay dla WooCommerce 2.2.29, at pay-wp.php

71 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Autopay for WooCommerce
4 Plugin URI: https://www.wpdesk.pl/sk/pay-wp-plugin
5 Description: Autopay online payments for WooCommerce. Pay quickly and securely with electronic transfer, BLIK, G-Pay, Apple Pay or credit card.
6 Version: 2.2.29
7 Author: WP Desk
8 Text Domain: pay-wp
9 Domain Path: /lang/
10 Author URI: http://www.wpdesk.pl/sk/pay-wp-author
11 Requires at least: 6.4
12 Tested up to: 7.0
13 WC requires at least: 10.5
14 WC tested up to: 10.9
15 Requires PHP: 7.4
16
17 Copyright 2022 WP Desk Ltd.
18
19 This program is free software; you can redistribute it and/or modify
20 it under the terms of the GNU General Public License as published by
21 the Free Software Foundation; either version 2 of the License, or
22 (at your option) any later version.
23
24 This program is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of
26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 GNU General Public License for more details.
28
29 You should have received a copy of the GNU General Public License
30 along with this program; if not, write to the Free Software
31 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 */
33
34 if ( ! defined( 'ABSPATH' ) ) {
35 exit;
36 } // Exit if accessed directly
37
38
39 /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
40 $plugin_version = '2.2.29';
41 $plugin_release_timestamp = '2023-06-05 08:23';
42
43 $plugin_name = 'Autopay dla WooCommerce';
44 $product_id = 'Autopay dla WooCommerce';
45 $plugin_class_name = \WPDesk\GatewayWPPay\Plugin::class;
46 $plugin_text_domain = 'pay-wp';
47
48 $plugin_file = __FILE__;
49 $plugin_dir = __DIR__;
50
51 define( $plugin_class_name, $plugin_version );
52
53 $requirements = array(
54 'php' => '7.4',
55 'wp' => '6.1',
56 'plugins' => array(
57 array(
58 'name' => 'woocommerce/woocommerce.php',
59 'nice_name' => 'WooCommerce',
60 ),
61 ),
62 );
63
64 add_action( 'before_woocommerce_init', function () {
65 if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
66 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
67 }
68 } );
69
70 require __DIR__ . '/vendor_prefixed/wpdesk/wp-plugin-flow-common/src/plugin-init-php52-free.php';
71