# elementor/4.3.0-beta3/modules/atomic-widgets/elements/base/has-base-settings.php

Elementor Website Builder – more than just a page builder, version 4.3.0-beta3. 21 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.3.0-beta3/code/modules/atomic-widgets/elements/base/has-base-settings.php
- Raw: https://pluginprobe.com/plugins/elementor/4.3.0-beta3/raw/modules/atomic-widgets/elements/base/has-base-settings.php
- Modified: 2026-07-20T13:54:42+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/elementor/4.3.0-beta3/code/modules/atomic-widgets/elements/base/has-base-settings.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\AtomicWidgets\Elements\Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * @mixin Has_Atomic_Base
 */
trait Has_Base_Settings {
	public function get_base_settings(): array {
		return $this->define_base_settings();
	}

	protected function define_base_settings(): array {
		return [];
	}
}

```
