| @@ -1,38 +1,33 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * @wordpress-plugin | |
| 4 | - * Plugin Name: ShopBuilder – Elementor WooCommerce Builder Addons | |
| 5 | - * Plugin URI: https://shopbuilderwp.com/ | |
| 6 | - * Description: WooCommerce Page Builder for Elementor | |
| 7 | - * Version: 2.1.0 | |
| 8 | - * Author: RadiusTheme | |
| 9 | - * Author URI: https://radiustheme.com | |
| 10 | - * Text Domain: shopbuilder | |
| 11 | - * Domain Path: /languages | |
| 12 | - * WC requires at least: 3.2 | |
| 13 | - * WC tested up to: 8.4.0 | |
| 14 | - * Elementor tested up to: 3.18.0 | |
| 15 | - * Elementor Pro tested up to: 3.18.0 | |
| 16 | - * | |
| 17 | - * @package RadiusTheme\SB | |
| 18 | - */ | |
| 19 | - | |
| 20 | -// Do not allow directly accessing this file. | |
| 21 | -if ( ! defined( 'ABSPATH' ) ) { | |
| 22 | - exit( 'This script cannot be accessed directly.' ); | |
| 23 | -} | |
| 24 | - | |
| 25 | -/** | |
| 26 | - * Define Constants. | |
| 27 | - */ | |
| 28 | -define( 'RTSB_VERSION', '2.1.0' ); | |
| 29 | -define( 'RTSB_FILE', __FILE__ ); | |
| 30 | -define( 'RTSB_PATH', plugin_dir_path(__FILE__ ) ); | |
| 31 | -define( 'RTSB_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) ); | |
| 32 | - | |
| 33 | -/** | |
| 34 | - * App Init. | |
| 35 | - */ | |
| 36 | -require_once 'app/ShopBuilder.php'; | |
| 37 | - | |
| 38 | - | |
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * @wordpress-plugin | |
| 4 | + * Plugin Name: ShopBuilder | |
| 5 | + * Plugin URI: | |
| 6 | + * Description: Woocommerce Builder for Elementor & Gutenberg | |
| 7 | + * Version: 1.0.0 | |
| 8 | + * Author: RadiusTheme | |
| 9 | + * Author URI: https://radiustheme.com | |
| 10 | + * Text Domain: shopbuilder | |
| 11 | + * Domain Path: /languages | |
| 12 | + * | |
| 13 | + * @package RadiusTheme\SB | |
| 14 | + */ | |
| 15 | + | |
| 16 | +// Do not allow directly accessing this file. | |
| 17 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 18 | + exit( 'This script cannot be accessed directly.' ); | |
| 19 | +} | |
| 20 | + | |
| 21 | +/** | |
| 22 | + * Define RTCL Content. | |
| 23 | + */ | |
| 24 | +define( 'RTSB_VERSION', '1.0.0' ); | |
| 25 | +define( 'RTSB_FILE', __FILE__ ); | |
| 26 | +define( 'RTSB_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) ); | |
| 27 | + | |
| 28 | +/** | |
| 29 | + * App Init. | |
| 30 | + */ | |
| 31 | +// require_once 'dev-helpers.php'; | |
| 32 | + | |
| 33 | +require_once 'app/ShopBuilder.php'; | |