# elementor/4.3.1/modules/atomic-widgets/utils/atomic-prop-remap-registry.php

Elementor Website Builder – more than just a page builder, version 4.3.1. 31 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.3.1/code/modules/atomic-widgets/utils/atomic-prop-remap-registry.php
- Raw: https://pluginprobe.com/plugins/elementor/4.3.1/raw/modules/atomic-widgets/utils/atomic-prop-remap-registry.php
- Modified: 2026-09-17T09:04:38+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.1/code/modules/atomic-widgets/utils/atomic-prop-remap-registry.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\AtomicWidgets\Utils;

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

class Atomic_Prop_Remap_Registry {
	/**
	 * @var array<string, callable>
	 */
	private static array $handlers = [];

	public static function register( string $type, callable $handler ): void {
		self::$handlers[ $type ] = $handler;
	}

	public static function get( string $type ): ?callable {
		return self::$handlers[ $type ] ?? null;
	}

	public static function has( string $type ): bool {
		return isset( self::$handlers[ $type ] );
	}

	public static function reset(): void {
		self::$handlers = [];
	}
}

```
