# shopbuilder/2.1.3/app/Modules/QuickView/QuickView.php

ShopBuilder – WooCommerce Builder For Elementor, version 2.1.3. 28 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/2.1.3/code/app/Modules/QuickView/QuickView.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/2.1.3/raw/app/Modules/QuickView/QuickView.php
- Modified: 2024-02-06T07:10:00+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.3/code/app/Modules/QuickView/QuickView.php#L10-L20`.

```php
<?php

namespace RadiusTheme\SB\Modules\QuickView;

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

use RadiusTheme\SB\Modules\Compare\CompareInstaller;
use RadiusTheme\SB\Traits\SingletonTrait;

final class QuickView {

	/**
	 * @var array
	 */
	public $settings = [];

	use SingletonTrait;

	function __construct() {
		QuickViewFrontEnd::instance();

		do_action( 'rtsb/module/quick_view/loaded' );
	}
}

```
