1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php namespace Elementor\Modules\AtomicWidgets\Base;
use Elementor\Modules\AtomicWidgets\PropTypes\Concerns\Has_Atomic_Base; use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Prop_Type; use Elementor\Widget_Base;
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. }
abstract class Atomic_Widget_Base extends Widget_Base { use Has_Atomic_Base;
protected $version = '0.0'; protected $styles = [];
public function __construct( $data = [], $args = null ) { parent::__construct( $data, $args );
$this->version = $data['version'] ?? '0.0'; $this->styles = $data['styles'] ?? []; }
abstract protected function define_atomic_controls(): array;
final public function get_initial_config() { $config = parent::get_initial_config();
$config['atomic'] = true; $config['atomic_controls'] = $this->get_atomic_controls(); $config['atomic_props_schema'] = static::get_props_schema(); $config['version'] = $this->version;
return $config; }
// Removes the wrapper div from the widget. public function before_render() {} public function after_render() {}
/** * @return array<string, Prop_Type> */ abstract protected static function define_props_schema(): array; }
|