| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Modules\Components\Utils; |
| 4 |
|
| 5 |
use Elementor\Modules\AtomicWidgets\Utils\Format_Element_Ids; |
| 6 |
|
| 7 |
if ( ! defined( 'ABSPATH' ) ) { |
| 8 |
exit; // Exit if accessed directly. |
| 9 |
} |
| 10 |
|
| 11 |
/** |
| 12 |
* Backward-compatibility alias. |
| 13 |
* |
| 14 |
* All logic now lives in {@see Format_Element_Ids}. This class is kept so that |
| 15 |
* existing callers (Component_Instance_Transformer, Component_Instance, and |
| 16 |
* their tests) do not need to be changed. |
| 17 |
*/ |
| 18 |
class Format_Component_Elements_Id extends Format_Element_Ids {} |
| 19 |
|