# elementor/3.34.3/modules/components/documents/component-overridable-props.php

Elementor Website Builder – more than just a page builder, version 3.34.3. 36 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.34.3/code/modules/components/documents/component-overridable-props.php
- Raw: https://pluginprobe.com/plugins/elementor/3.34.3/raw/modules/components/documents/component-overridable-props.php
- Modified: 2026-01-26T15:06:04+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/3.34.3/code/modules/components/documents/component-overridable-props.php#L10-L20`.

```php
<?php
namespace Elementor\Modules\Components\Documents;

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

class Component_Overridable_Props {
	/** @var array{ [string]: Component_Overridable_Prop } */
	public array $props;
	public array $groups;

	private function __construct( $overridable_props_meta ) {
		if ( is_string( $overridable_props_meta ) && ! empty( $overridable_props_meta ) ) {
			$overridable_props_meta = json_decode( $overridable_props_meta, true );
		}

		if ( empty( $overridable_props_meta ) ) {
			$this->props = [];
			$this->groups = [];

		}

		$formatted_props = array_map( function( array $overridable_prop ) {
				return Component_Overridable_Prop::make( $overridable_prop );
		}, $overridable_props_meta['props'] ?? [] );

		$this->props = $formatted_props;
		$this->groups = $overridable_props_meta['groups'] ?? [];
	}

	public static function make( array $overridable_props_meta ): self {
		return new self( $overridable_props_meta );
	}
}

```
