| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/www/wp-content/plugins/elementor/core/editor/data/globals/endpoints/ |
Upload File : |
<?php
namespace Elementor\Core\Editor\Data\Globals\Endpoints;
use Elementor\Data\Base\Endpoint;
use Elementor\Plugin;
use Elementor\Core\Utils\Exceptions;
abstract class Base extends Endpoint {
public static function get_format() {
return '{id}';
}
protected function register() {
parent::register();
$this->register_item_route();
$this->register_item_route( \WP_REST_Server::CREATABLE );
$this->register_item_route( \WP_REST_Server::DELETABLE );
}
public function get_items( $request ) {
return $this->get_kit_items();
}
public function get_item( $id, $request ) {
$items = $this->get_kit_items();
if ( ! isset( $items[ $id ] ) ) {
return new \WP_Error(
'global_not_found',
__( 'The Global value you are trying to use is not available.', 'elementor' ),
[ 'status' => Exceptions::NOT_FOUND ]
);
}
return $items[ $id ];
}
public function create_item( $id, $request ) {
$item = $request->get_body_params();
if ( ! isset( $item['title'] ) ) {
return new \WP_Error( 'invalid_title', 'Invalid title' );
}
$kit = Plugin::$instance->kits_manager->get_active_kit();
$item['id'] = $id;
$db_item = $this->convert_db_format( $item );
$kit->add_repeater_row( 'custom_' . $this->get_name(), $db_item );
return $item;
}
abstract protected function get_kit_items();
/**
* @param array $item frontend format.
* @return array backend format.
*/
abstract protected function convert_db_format( $item );
}