PluginProbe
Elementor Website Builder – more than just a page builder / 4.3.2
Elementor Website Builder – more than just a page builder v4.3.2
4.3.2 4.3.1 4.3.0 4.3.0-beta3 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 All 455 releases
elementor / modules / mcp / abilities / appliers / v3 / serializer / v3-property-serializer.php

v3-property-serializer.php in Elementor Website Builder – more than just a page builder 4.3.2, at modules/mcp/abilities/appliers/v3/serializer/v3-property-serializer.php

23 lines 760 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\Modules\Mcp\Abilities\Appliers\V3\Serializer;
4
5 if ( ! defined( 'ABSPATH' ) ) {
6 exit;
7 }
8
9 /**
10 * Inverse of {@see \Elementor\Modules\Mcp\Abilities\Appliers\V3\Converter\V3_Property_Converter}:
11 * reads V3 legacy settings and emits CSS declarations into a {@see V3_Block_Accumulator}
12 * grouped by breakpoint / pseudo-state.
13 *
14 * Each serializer owns a single override shape (typography_prefix, border_prefix,
15 * box_shadow_prefix, setting+resolver, or generic index fallback).
16 */
17 interface V3_Property_Serializer {
18
19 public function is_supported( array $entry, string $property, ?string $state ): bool;
20
21 public function emit( V3_Block_Accumulator $blocks, array $settings, array $entry, string $property, ?string $state ): void;
22 }
23