PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 1.1.1
ShopBuilder – WooCommerce Builder For Elementor v1.1.1
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
shopbuilder / shopbuilder.php

shopbuilder.php in ShopBuilder – WooCommerce Builder For Elementor 1.1.1, at shopbuilder.php

34 lines 783 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @wordpress-plugin
4 * Plugin Name: ShopBuilder
5 * Plugin URI:
6 * Description: Woocommerce Builder for Elementor & Gutenberg
7 * Version: 1.1.1
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.1.1' );
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';
34