# elementor/4.3.0/modules/atomic-widgets/css-converter/property-converter.php

Elementor Website Builder – more than just a page builder, version 4.3.0. 23 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.3.0/code/modules/atomic-widgets/css-converter/property-converter.php
- Raw: https://pluginprobe.com/plugins/elementor/4.3.0/raw/modules/atomic-widgets/css-converter/property-converter.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/code/modules/atomic-widgets/css-converter/property-converter.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\AtomicWidgets\CssConverter;

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

interface Property_Converter {
	/**
	 * @param array{property: string, value: string} $rule A single parsed CSS declaration.
	 */
	public function is_supported( array $rule ): bool;

	/**
	 * Mutates the shared context and returns whether the rule was converted.
	 *
	 * @param Conversion_Context                     $context The shared mutable conversion context.
	 * @param array{property: string, value: string} $rule    A single parsed CSS declaration.
	 */
	public function convert( Conversion_Context $context, array $rule ): bool;
}

```
