PluginProbe
ElementsKit Elementor Addons – Advanced Widgets & Templates Addons for Elementor / 4.0.4
ElementsKit Elementor Addons – Advanced Widgets & Templates Addons for Elementor v4.0.4
4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.10.02 3.10.01 3.9.10 3.9.9 3.9.8 3.9.7 3.9.5 3.9.6 3.9.3 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.2.0 2.2.1 2.2.2 All 183 releases
elementskit-lite / libs / framework / classes / plugin-data-sender.php
plugin-data-sender.php
32 lines 634 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ElementsKit_Lite\Libs\Framework\Classes;
4
5 use ElementsKit_Lite\Traits\Singleton;
6
7 defined( 'ABSPATH' ) || exit;
8
9 class Plugin_Data_Sender {
10 use Singleton;
11
12 public function __construct() {}
13
14 private function getUrl( $route ) {
15 return trailingslashit(\ElementsKit_Lite::api_url() . $route);
16 }
17
18 public function sendEmailSubscribeData( $route, $data ) {
19 return wp_remote_post(
20 $this->getUrl( $route ),
21 array(
22 'method' => 'POST',
23 'headers' => array(
24 'Accept' => '*/*',
25 'Content-Type' => 'application/json'
26 ),
27 'body' => wp_json_encode( $data ),
28 )
29 );
30 }
31 }
32