| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package Redbit\SimpleShop\WpPlugin |
| 4 |
* @license MIT |
| 5 |
* @copyright 2016-2022 Redbit s.r.o. |
| 6 |
* @author Redbit s.r.o. <info@simpleshop.cz> |
| 7 |
*/ |
| 8 |
|
| 9 |
/* |
| 10 |
* Plugin Name: SimpleShop |
| 11 |
* Plugin URI: https://podpora.redbit.cz/stitek/wp-plugin/ |
| 12 |
* Description: The SimpleShop WP plugin easily connects your WordPress website with a SimpleShop account and allows you to restrict the access to the web content only for members. |
| 13 |
* Version: 2.18.0 |
| 14 |
* Requires at least: 6.6 |
| 15 |
* Requires PHP: 7.4 |
| 16 |
* Author: Redbit s.r.o. |
| 17 |
* Author URI: https://www.redbit.cz |
| 18 |
* License: https://github.com/redbitcz/simpleshop-wp-plugin/blob/master/LICENSE |
| 19 |
* Text Domain: simpleshop-cz |
| 20 |
* Update URI: https://wordpress.org/plugins/simpleshop-cz/ |
| 21 |
*/ |
| 22 |
|
| 23 |
namespace Redbit\SimpleShop\WpPlugin; |
| 24 |
|
| 25 |
require_once __DIR__ . '/vendor/autoload.php'; |
| 26 |
|
| 27 |
define( 'SIMPLESHOP_PLUGIN_VERSION', 'v2.18.0' ); |
| 28 |
define( 'SIMPLESHOP_PREFIX', '_ssc_' ); |
| 29 |
|
| 30 |
/** Start plugin */ |
| 31 |
SimpleShop::$pluginMainFile = __FILE__; |
| 32 |
SimpleShop::getInstance(); |
| 33 |
|