| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/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 );
}