145 lines
3.9 KiB
PHP
145 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace Elementor\Modules\WpRest\Classes;
|
|
|
|
use Elementor\Plugin;
|
|
use Elementor\Utils;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Elementor_Post_Meta {
|
|
|
|
public function register(): void {
|
|
$post_types = get_post_types_by_support( 'elementor' );
|
|
|
|
foreach ( $post_types as $post_type ) {
|
|
$this->register_edit_mode_meta( $post_type );
|
|
$this->register_template_type_meta( $post_type );
|
|
$this->register_elementor_data_meta( $post_type );
|
|
$this->register_page_settings_meta( $post_type );
|
|
|
|
if ( Utils::has_pro() ) {
|
|
$this->register_conditions_meta( $post_type );
|
|
}
|
|
}
|
|
}
|
|
|
|
private function register_edit_mode_meta( string $post_type ): void {
|
|
register_meta( 'post', '_elementor_edit_mode', [
|
|
'single' => true,
|
|
'object_subtype' => $post_type,
|
|
'show_in_rest' => [
|
|
'schema' => [
|
|
'title' => 'Elementor edit mode',
|
|
'description' => 'Elementor edit mode, `builder` is required for Elementor editing',
|
|
'type' => 'string',
|
|
'enum' => [ '', 'builder' ],
|
|
'default' => '',
|
|
'context' => [ 'edit' ],
|
|
],
|
|
],
|
|
'auth_callback' => [ $this, 'check_edit_permission' ],
|
|
]);
|
|
}
|
|
|
|
private function register_template_type_meta( string $post_type ): void {
|
|
$document_types = Plugin::$instance->documents->get_document_types();
|
|
|
|
register_meta( 'post', '_elementor_template_type', [
|
|
'single' => true,
|
|
'object_subtype' => $post_type,
|
|
'show_in_rest' => [
|
|
'schema' => [
|
|
'title' => 'Elementor template type',
|
|
'description' => 'Elementor document type',
|
|
'type' => 'string',
|
|
'enum' => array_merge( array_keys( $document_types ), [ '' ] ),
|
|
'default' => '',
|
|
'context' => [ 'edit' ],
|
|
],
|
|
],
|
|
'auth_callback' => [ $this, 'check_edit_permission' ],
|
|
]);
|
|
}
|
|
|
|
private function register_elementor_data_meta( string $post_type ): void {
|
|
register_meta( 'post', '_elementor_data', [
|
|
'single' => true,
|
|
'object_subtype' => $post_type,
|
|
'show_in_rest' => [
|
|
'schema' => [
|
|
'title' => 'Elementor data',
|
|
'description' => 'Elementor JSON as a string',
|
|
'type' => 'string',
|
|
'default' => '',
|
|
'context' => [ 'edit' ],
|
|
],
|
|
],
|
|
'auth_callback' => [ $this, 'check_edit_permission' ],
|
|
]);
|
|
}
|
|
|
|
private function register_page_settings_meta( string $post_type ): void {
|
|
register_meta( 'post', '_elementor_page_settings', [
|
|
'single' => true,
|
|
'object_subtype' => $post_type,
|
|
'type' => 'object',
|
|
'show_in_rest' => [
|
|
'schema' => [
|
|
'title' => 'Elementor page settings',
|
|
'description' => 'Elementor page level settings',
|
|
'type' => 'object',
|
|
'properties' => [
|
|
'hide_title' => [
|
|
'type' => 'string',
|
|
'enum' => [ 'yes', 'no' ],
|
|
'default' => '',
|
|
],
|
|
],
|
|
'default' => '{}',
|
|
'additionalProperties' => true,
|
|
'context' => [ 'edit' ],
|
|
],
|
|
],
|
|
'auth_callback' => [ $this, 'check_edit_permission' ],
|
|
]);
|
|
}
|
|
|
|
private function register_conditions_meta( string $post_type ): void {
|
|
register_meta( 'post', '_elementor_conditions', [
|
|
'object_subtype' => $post_type,
|
|
'type' => 'object',
|
|
'title' => 'Elementor conditions',
|
|
'description' => 'Elementor conditions',
|
|
'single' => true,
|
|
'show_in_rest' => [
|
|
'schema' => [
|
|
'description' => 'Elementor conditions',
|
|
'type' => 'array',
|
|
'additionalProperties' => true,
|
|
'default' => [],
|
|
'context' => [ 'edit' ],
|
|
],
|
|
],
|
|
'auth_callback' => [ $this, 'check_edit_permission' ],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Check if current user has permission to edit the specific post with elementor
|
|
*
|
|
* @param bool $allowed Whether the user can add the post meta. Default false.
|
|
* @param string $meta_key The meta key.
|
|
* @param int $post_id Post ID.
|
|
* @return bool
|
|
* @since 3.27.0
|
|
*/
|
|
public function check_edit_permission( bool $allowed, string $meta_key, int $post_id ): bool {
|
|
$document = Plugin::$instance->documents->get( $post_id );
|
|
|
|
return $document && $document->is_editable_by_current_user();
|
|
}
|
|
}
|