-
Notifications
You must be signed in to change notification settings - Fork 1
/
simpleshop-cz.php
32 lines (27 loc) · 1001 Bytes
/
simpleshop-cz.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* @package Redbit\SimpleShop\WpPlugin
* @license MIT
* @copyright 2016-2022 Redbit s.r.o.
* @author Redbit s.r.o. <[email protected]>
*/
/*
* Plugin Name: SimpleShop
* Plugin URI: https://podpora.redbit.cz/stitek/wp-plugin/
* 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.
* Version: dev-master
* Requires at least: 5.3
* Requires PHP: 7.4
* Author: Redbit s.r.o.
* Author URI: https://www.redbit.cz
* License: https://github.com/redbitcz/simpleshop-wp-plugin/blob/master/LICENSE
* Text Domain: simpleshop-cz
* Update URI: https://wordpress.org/plugins/simpleshop-cz/
*/
namespace Redbit\SimpleShop\WpPlugin;
require_once __DIR__ . '/vendor/autoload.php';
define( 'SIMPLESHOP_PLUGIN_VERSION', 'dev-master' );
define( 'SIMPLESHOP_PREFIX', '_ssc_' );
/** Start plugin */
SimpleShop::$pluginMainFile = __FILE__;
SimpleShop::getInstance();