Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/cwd/plugins/elementor-pro/modules/global-widget/data/ |
Upload File : |
<?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' ); } }