PATH:
home
/
lab2454c
/
elementalmill.com
/
wp-content
/
plugins
/
elementskit-lite
/
modules
/
layout-manager
<?php namespace ElementsKit_Lite\Modules\Layout_Manager; defined( 'ABSPATH' ) || exit; class Layout_List_Api extends \ElementsKit_Lite\Core\Handler_Api { public function config(){ $this->prefix = 'layout-manager-api'; } public function get_layout_list(){ $param = array_merge( \ElementsKit_Lite::license_data(), $_GET, ['action' => 'get_layout_list']); $response = wp_remote_get( \ElementsKit_Lite::api_url() . 'layout-manager-api/?' . http_build_query($param), [ 'timeout' => 30, 'headers' => [ 'Content-Type' => 'application/json', ] ] ); return json_decode(wp_remote_retrieve_body( $response )); } }
[-] layout-list-api.php
[edit]
[+]
..
[-] library-source.php
[edit]
[-] init.php
[edit]
[+]
assets
[-] .htaccess
[edit]
[-] layout-import-api.php
[edit]