64 lines
2.2 KiB
PHP
64 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: Flexible PDF Coupons for WooCommerce
|
|
* Plugin URI: https://www.wpdesk.net/sk/flexible-coupons-free-plugin/
|
|
* Description: Flexible PDF Coupons for WooCommerce is a WooCommerce plugin with which you can create your gift cards, vouchers, or coupons in PDF format. Use it for your future marketing campaigns.
|
|
* Product: Flexible PDF Coupons for WooCommerce
|
|
* Version: 1.14.4
|
|
* Author: WP Desk
|
|
* Author URI: https://www.wpdesk.net/sk/flexible-coupons-free-author
|
|
* Text Domain: flexible-coupons
|
|
* Domain Path: /lang/
|
|
* Requires at least: 6.4
|
|
* Requires at least: 6.4
|
|
* Tested up to: 6.9
|
|
* WC requires at least: 10.3
|
|
* WC tested up to: 10.7
|
|
* 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 3 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 WPDesk\FlexibleCoupons
|
|
*/
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
/* Plugin version */
|
|
$plugin_version = '1.14.4';
|
|
/* Plugin release */
|
|
$plugin_release_timestamp = '2023-06-21 15:45';
|
|
|
|
$plugin_name = 'Flexible PDF Coupons for WooCommerce';
|
|
$product_id = 'Flexible PDF Coupons for WooCommerce';
|
|
$plugin_class_name = '\WPDesk\FlexibleCoupons\Plugin';
|
|
$plugin_text_domain = 'flexible-coupons';
|
|
$plugin_file = __FILE__;
|
|
$plugin_dir = __DIR__;
|
|
|
|
$requirements = [
|
|
'php' => '7.4',
|
|
'wp' => '5.0',
|
|
'plugins' => [
|
|
[
|
|
'name' => 'woocommerce/woocommerce.php',
|
|
'nice_name' => 'WooCommerce',
|
|
'version' => '4.0',
|
|
],
|
|
],
|
|
];
|
|
|
|
require __DIR__ . '/vendor_prefixed/wpdesk/wp-plugin-flow-common/src/plugin-init-php52-free.php';
|