Files
szkoleniauryzaj.pl/wp-content/plugins/flexible-checkout-fields/flexible-checkout-fields.php
2024-11-10 21:08:49 +01:00

80 lines
2.5 KiB
PHP

<?php
/**
* Plugin Name: Flexible Checkout Fields
* Plugin URI: https://www.wpdesk.net/products/flexible-checkout-fields-pro-woocommerce/
* Description: Manage your WooCommerce checkout fields. Change order, labels, placeholders and add new fields.
* Version: 3.4.2
* Author: WP Desk
* Author URI: https://www.wpdesk.net/
* Text Domain: flexible-checkout-fields
* Domain Path: /lang/
* Requires at least: 5.7
* Tested up to: 6.0
* WC requires at least: 6.5
* WC tested up to: 6.9
* Requires PHP: 7.0
*
* 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
*
* @package Flexible Checkout Fields
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly
/* THIS VARIABLE CAN BE CHANGED AUTOMATICALLY */
$plugin_version = '3.4.2';
/*
* Update when conditions are met:
* - major version: no compatibility (disables dependent plugins)
* - minor version: compatibility problems (displays notice in dependent plugins)
*/
$plugin_version_dev = '2.0';
define( 'FLEXIBLE_CHECKOUT_FIELDS_VERSION', $plugin_version );
define( 'FLEXIBLE_CHECKOUT_FIELDS_VERSION_DEV', $plugin_version_dev );
if ( ! defined( 'FCF_VERSION' ) ) {
define( 'FCF_VERSION', FLEXIBLE_CHECKOUT_FIELDS_VERSION );
}
$plugin_name = 'Flexible Checkout Fields';
$plugin_class_name = 'Flexible_Checkout_Fields_Plugin';
$plugin_text_domain = 'flexible-checkout-fields';
$product_id = 'Flexible Checkout Fields';
$plugin_file = __FILE__;
$plugin_dir = dirname( __FILE__ );
define( $plugin_class_name, $plugin_version );
$requirements = [
'php' => '7.0',
'wp' => '5.2',
'plugins' => [
[
'name' => 'woocommerce/woocommerce.php',
'nice_name' => 'WooCommerce',
],
],
];
require_once __DIR__ . '/inc/wpdesk-woo27-functions.php';
require __DIR__ . '/vendor_prefixed/wpdesk/wp-plugin-flow/src/plugin-init-php52-free.php';