# shopbuilder/2.1.12/shopbuilder.php

ShopBuilder – WooCommerce Builder For Elementor, version 2.1.12. 37 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/2.1.12/code/shopbuilder.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/2.1.12/raw/shopbuilder.php
- Modified: 2024-06-10T11:41:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/2.1.12/code/shopbuilder.php#L10-L20`.

```php
<?php
/**
 * @wordpress-plugin
 * Plugin Name:                ShopBuilder - Elementor WooCommerce Builder Addons
 * Plugin URI:                 https://shopbuilderwp.com/
 * Description:                WooCommerce Page Builder for Elementor
 * Version:                    2.1.12
 * Author:                     RadiusTheme
 * Author URI:                 https://radiustheme.com
 * Text Domain:                shopbuilder
 * Domain Path:                /languages
 * WC requires at least:       3.2
 * WC tested up to:            8.9
 * Elementor tested up to:     3.22
 * Elementor Pro tested up to: 3.22
 *
 * @package RadiusTheme\SB
 */

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}

/**
 * Define Constants.
 */
define( 'RTSB_VERSION', '2.1.12' );
define( 'RTSB_FILE', __FILE__ );
define( 'RTSB_PATH', plugin_dir_path( __FILE__ ) );
define( 'RTSB_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) );

/**
 * App Init.
 */
require_once 'app/ShopBuilder.php';

```
