%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wellingtpa/www/wp-content/plugins/elementor/app/modules/site-builder/connect/ |
Upload File : |
<?php
namespace Elementor\App\Modules\SiteBuilder\Connect;
use Elementor\Core\Common\Modules\Connect\Apps\Library;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class App extends Library {
const API_URL = 'https://my.elementor.com/api/v2/builder/';
public function get_title() {
return esc_html__( 'Site Builder', 'elementor' );
}
protected function get_slug() {
return 'site-builder';
}
protected function get_api_url() {
return static::API_URL;
}
public function get_home_screen() {
return $this->http_request(
'GET',
'website-planner/session/home-screen',
[
'headers' => [
'x-host-site-title' => (string) get_bloginfo( 'name' ),
'x-host-site-context' => (string) get_bloginfo( 'description' ),
],
],
[
'return_type' => static::HTTP_RETURN_TYPE_ARRAY,
]
);
}
}