ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "controller.php"
Full Path: /home/zcziejy/ryadselyen/elementor-pro/modules/global-widget/data/controller.php
File size: 1 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementorPro\Modules\GlobalWidget\Data;
use Elementor\Data\Base\Controller as Controller_Base;
use ElementorPro\Plugin;
class Controller extends Controller_Base {
public function get_name() {
return 'global-widget/templates';
}
public function register_endpoints() {} // No endpoints.
// TODO: After merging with 'REST API V2' add `get_collection_params`.
public function get_items( $request ) {
$result = [];
$ids = $request->get_param( 'ids' );
if ( ! empty( $ids ) ) {
// TODO: This logic should be handled at REST API.
$ids = explode( ',', $ids );
foreach ( $ids as $template_id ) {
$template_data = Plugin::elementor()->templates_manager->get_template_data( [
'source' => 'local',
'template_id' => $template_id,
] );
if ( ! empty( $template_data ) ) {
$result[ $template_id ] = $template_data['content'][0];
}
}
}
return $result;
}
public function get_permission_callback( $request ) {
return current_user_can( 'edit_posts' );
}
}