Initial commit: Atomaste website

This commit is contained in:
2025-12-10 12:17:30 -05:00
commit 0b9e5d1605
19260 changed files with 5206382 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<?php
namespace Hostinger\EasyOnboarding\Requests;
defined( 'ABSPATH' ) || exit;
class Client {
private string $api_url;
private array $default_headers;
public function __construct( $api_url, $default_headers = array() ) {
$this->api_url = $api_url;
$this->default_headers = $default_headers;
}
public function get( $endpoint, $params = array(), $headers = array(), $timeout = 120 ) {
$url = $this->api_url . $endpoint;
$request_args = array(
'method' => 'GET',
'headers' => array_merge( $this->default_headers, $headers ),
'timeout' => $timeout,
);
if ( ! empty( $params ) ) {
$url = add_query_arg( $params, $url );
}
$response = wp_remote_get( $url, $request_args );
return $response;
}
public function post( $endpoint, $params = array(), $headers = array(), $timeout = 120 ) {
$url = $this->api_url . $endpoint;
$request_args = array(
'method' => 'POST',
'timeout' => $timeout,
'headers' => array_merge( $this->default_headers, $headers ),
'body' => $params,
);
$response = wp_remote_post( $url, $request_args );
return $response;
}
}