PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.4
Elementor Website Builder – more than just a page builder v4.2.4
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | modules/variables/storage/entities/variable.php +8 -0 4.2.04.2.4 View file →
@@ -81,8 +81,16 @@
81 81 public function set_value( $value ) {
82 82 $this->data['value'] = $value;
83 83 }
84 84
85 + public function sync_to_v3(): bool {
86 + return ! empty( $this->data['sync_to_v3'] );
87 + }
88 +
89 + public function set_sync_to_v3( bool $sync_to_v3 ) {
90 + $this->data['sync_to_v3'] = $sync_to_v3;
91 + }
92 +
85 93 public function type() {
86 94 return $this->data['type'];
87 95 }
88 96