first commit

This commit is contained in:
2026-03-26 13:48:22 +01:00
commit 6af83e92ed
7795 changed files with 2766332 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
<?php
namespace Elementor\Modules\Components\Documents;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Component_Overridable_Prop {
/** @var string */
public $override_key;
/** @var string */
public $element_id;
/** @var string */
public $el_type;
/** @var string */
public $widget_type;
/** @var string */
public $prop_key;
/** @var string */
public $label;
/** @var array{ $$type: string, value: mixed } */
public $origin_value;
/** @var string */
public $group_id;
/** @var ?array{ $el_type: string, $widget_type: string, $prop_key: string } */
public $origin_prop_fields = null;
public function __construct( array $overridable_prop ) {
$this->override_key = $overridable_prop['overrideKey'];
$this->element_id = $overridable_prop['elementId'];
$this->el_type = $overridable_prop['elType'];
$this->widget_type = $overridable_prop['widgetType'];
$this->prop_key = $overridable_prop['propKey'];
$this->label = $overridable_prop['label'];
$this->origin_value = $overridable_prop['originValue'];
$this->group_id = $overridable_prop['groupId'] ?? null;
if ( isset( $overridable_prop['originPropFields'] ) ) {
$this->origin_prop_fields = [
'el_type' => $overridable_prop['originPropFields']['elType'],
'widget_type' => $overridable_prop['originPropFields']['widgetType'],
'prop_key' => $overridable_prop['originPropFields']['propKey'],
'element_id' => $overridable_prop['originPropFields']['elementId'],
];
}
}
public static function make( array $overridable_prop ): self {
return new self( $overridable_prop );
}
}

View File

@@ -0,0 +1,36 @@
<?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 = [];
return;
}
$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 );
}
}

View File

@@ -0,0 +1,143 @@
<?php
namespace Elementor\Modules\Components\Documents;
use Elementor\Core\Base\Document;
use Elementor\Core\Utils\Api\Parse_Result;
use Elementor\Modules\Components\OverridableProps\Component_Overridable_Props_Parser;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Component extends Document {
const TYPE = 'elementor_component';
const COMPONENT_UID_META_KEY = '_elementor_component_uid';
const OVERRIDABLE_PROPS_META_KEY = '_elementor_component_overridable_props';
const ARCHIVED_META_KEY = '_elementor_component_is_archived';
const ARCHIVED_AT_META_KEY = '_elementor_component_archived_at';
const COMPONENT_CUSTOM_META_KEYS = [
self::COMPONENT_UID_META_KEY,
self::OVERRIDABLE_PROPS_META_KEY,
self::ARCHIVED_META_KEY,
self::ARCHIVED_AT_META_KEY,
];
public static function get_properties() {
$properties = parent::get_properties();
$properties['cpt'] = [ self::TYPE ];
return $properties;
}
public static function get_type() {
return self::TYPE;
}
public static function get_title() {
return esc_html__( 'Component', 'elementor' );
}
public static function get_plural_title() {
return esc_html__( 'Components', 'elementor' );
}
public static function get_labels(): array {
$plural_label = static::get_plural_title();
$singular_label = static::get_title();
$labels = [
'name' => $plural_label,
'singular_name' => $singular_label,
];
return $labels;
}
public static function get_supported_features(): array {
return [
'title',
'author',
'thumbnail',
'custom-fields',
'revisions',
'elementor',
];
}
public function get_component_uid() {
return $this->get_meta( self::COMPONENT_UID_META_KEY );
}
public function get_overridable_props(): Component_Overridable_Props {
$meta = $this->get_json_meta( self::OVERRIDABLE_PROPS_META_KEY );
return Component_Overridable_Props::make( $meta ?? [] );
}
public function archive() {
try {
$this->update_json_meta( self::ARCHIVED_META_KEY, [
'is_archived' => true,
'archived_at' => time(),
] );
} catch ( \Exception $e ) {
throw new \Exception( 'Failed to archive component: ' . esc_html( $e->getMessage() ) );
}
}
public function get_is_archived(): bool {
$archived_meta = $this->get_json_meta( self::ARCHIVED_META_KEY );
return $archived_meta['is_archived'] ?? false;
}
public function update_overridable_props( $data ): Parse_Result {
$parser = Component_Overridable_Props_Parser::make();
$result = $parser->parse( $data );
if ( ! $result->is_valid() ) {
return $result;
}
$sanitized_data = $result->unwrap();
$this->update_json_meta( self::OVERRIDABLE_PROPS_META_KEY, $sanitized_data );
return $result;
}
public function update_title( string $title ): bool {
$sanitized_title = sanitize_text_field( $title );
if ( empty( $sanitized_title ) ) {
return false;
}
return $this->update_post_field( 'post_title', $sanitized_title );
}
public function update_status( string $status ): bool {
if ( ! in_array( $status, [ Document::STATUS_PUBLISH, Document::STATUS_DRAFT, Document::STATUS_AUTOSAVE ], true ) ) {
return false;
}
return $this->update_post_field( 'post_status', $status );
}
private function update_post_field( string $field, $value ): bool {
$result = wp_update_post( [
'ID' => $this->post->ID,
$field => $value,
] );
$success = ! is_wp_error( $result ) && $result > 0;
if ( $success ) {
$this->refresh_post();
}
return $success;
}
}