# elementor/4.3.0-beta3/modules/components/utils/format-component-elements-id.php

Elementor Website Builder – more than just a page builder, version 4.3.0-beta3. 19 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.3.0-beta3/code/modules/components/utils/format-component-elements-id.php
- Raw: https://pluginprobe.com/plugins/elementor/4.3.0-beta3/raw/modules/components/utils/format-component-elements-id.php
- Modified: 2026-09-01T11:47:36+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-beta3/code/modules/components/utils/format-component-elements-id.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\Components\Utils;

use Elementor\Modules\AtomicWidgets\Utils\Format_Element_Ids;

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

/**
 * Backward-compatibility alias.
 *
 * All logic now lives in {@see Format_Element_Ids}. This class is kept so that
 * existing callers (Component_Instance_Transformer, Component_Instance, and
 * their tests) do not need to be changed.
 */
class Format_Component_Elements_Id extends Format_Element_Ids {}

```
