8889841ccbo.clix.co.tz/wp-content/plugins/elementskit-lite/modules/layout-manager/layout-list-api.php000064400000001472150526566170031233 0ustar00home/clixcotzprefix = 'layout-manager-api'; } public function get_layout_list() { $param = array_merge( \ElementsKit_Lite::license_data(), $_GET, array( 'action' => 'get_layout_list' ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Passed in elementor's hook for get url which has processed the nonce already. $response = wp_remote_get( \ElementsKit_Lite::api_url() . 'layout-manager-api/?' . http_build_query( $param ), array( 'timeout' => 30, 'headers' => array( 'Content-Type' => 'application/json', ), ) ); return json_decode( wp_remote_retrieve_body( $response ) ); } }