# shopbuilder/2.6.5/app/Models/ExtraSettings.php

ShopBuilder – WooCommerce Builder For Elementor, version 2.6.5. 31 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/2.6.5/code/app/Models/ExtraSettings.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/2.6.5/raw/app/Models/ExtraSettings.php
- Modified: 2025-05-09T06:26:10+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.6.5/code/app/Models/ExtraSettings.php#L10-L20`.

```php
<?php

namespace RadiusTheme\SB\Models;

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

use RadiusTheme\SB\Abstracts\AbsSettings;
use RadiusTheme\SB\Traits\SingletonTrait;

/**
 * Template Related Settings
 */
class ExtraSettings extends AbsSettings {

	/**
	 * Singleton
	 */
	use SingletonTrait;

	/**
	 * @return string
	 */
	public function source() {
		return 'extra_settings';
	}

}

```
