# shopbuilder/2.6.2/app/Models/TemplateSettings.php

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

- Page: https://pluginprobe.com/plugins/shopbuilder/2.6.2/code/app/Models/TemplateSettings.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/2.6.2/raw/app/Models/TemplateSettings.php
- Modified: 2025-05-07T09:06: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.6.2/code/app/Models/TemplateSettings.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 TemplateSettings extends AbsSettings {

	/**
	 * Singleton
	 */
	use SingletonTrait;

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

}

```
