PluginProbe
SimpleShop / trunk
SimpleShop vtrunk
2.18.0 2.17.1 2.2.4 2.2.5 2.2.6 2.2.7 2.3.1 2.3.2 2.4.0 2.4.1 2.4.2 2.5.0 2.6.0 2.6.1 2.6.2 2.6.3 2.7.0 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.9.0 All 57 releases
simpleshop-cz / simpleshop-cz.php

simpleshop-cz.php in SimpleShop trunk, at simpleshop-cz.php

33 lines 994 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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