# tagembed-widget/7.4/helper/helper.php

Tagembed: Social Media Feeds and Customer Reviews Widget, version 7.4. 121 lines.

- Page: https://pluginprobe.com/plugins/tagembed-widget/7.4/code/helper/helper.php
- Raw: https://pluginprobe.com/plugins/tagembed-widget/7.4/raw/helper/helper.php
- Modified: 2026-07-24T12:32:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tagembed-widget/7.4/code/helper/helper.php#L10-L20`.

```php
<?php
function ___tagembed__wpApiCall($apiUrl, $body, $header = null, $breakResponse = false)
{
	$header = (null != $header ? $header : []);
	$args = ['body' => $body, 'timeout' => '30', 'redirection' => '5', 'httpversion' => '1.0', 'blocking' => true, 'headers' => $header, 'cookies' => []];
	$response = wp_remote_post($apiUrl, $args);
	if ($breakResponse) :
		___tagembed__dd($response);
	endif;
	if (!is_wp_error($response)) :
		if (isset($response['body']) && !empty($response['body'])) :
			return json_decode($response['body']);
		else :
			return;
		endif;
	else :
		___tagembed__wpApiCall($apiUrl, $body, $header = null, $breakResponse = false);
	endif;
}
function ___tagembed__manageApiResponse($response)
{
	if (empty($response->head)) :
		return ___tagembed__exitWithDanger();
	endif;
	$responseCode = $response->head->code;
	switch ($responseCode) {
		case 200:
			if ($response->head->status) :
				if (!empty($response->body)) :
					return $response->body;
				endif;
				if (!empty($response->head->message)) :
					return ___tagembed__exitWithSuccess($response->head->message);
				else :
					return ___tagembed__exitWithSuccess();
				endif;
			else :
				if (!empty($response->head->message)) :
					return ___tagembed__exitWithDanger($response->head->message);
				else :
					return ___tagembed__exitWithDanger();
				endif;
			endif;
			break;
		case 412:
			/* --Start-- Manage Validation Error */
			if (empty($response->body)) :
				return ___tagembed__exitWithDanger();
			else :
				return ___tagembed__exitWithDanger('Validation Error', $response->body);
			endif;
			/* --End-- Manage Validation Error */
			break;
		default:
			if (!empty($response->head->message)) :
				return ___tagembed__exitWithDanger($response->head->message);
			else :
				return ___tagembed__exitWithDanger();
			endif;
	}
}
function ___tagembed__IsBase64($data)
{
	$decoded_data = base64_decode($data, true);
	$encoded_data = base64_encode($decoded_data);
	if ($encoded_data != $data) :
		return false;
	elseif (!ctype_print($decoded_data)) :
		return false;
	else :
		return true;
	endif;
}
function ___tagembed__exitWithSuccess($data = null)
{
	echo wp_json_encode(['status' => (bool)true, 'data' => (array)$data, 'message' => (string)'OK']);
	exit;
}
function ___tagembed__exitWithDanger($error = null, $data = [])
{
	echo wp_json_encode(['status' => (bool)false, 'data' => (array)$data, 'message' => (string)('' != $error ? $error : 'Oh snap! Something went wrong.')]);
	exit;
}
function ___tagembed__d($data = 'NONE')
{
	echo '<pre>';
	print_r($data);
	echo '</pre>';
}
function ___tagembed__dd($data = 'NONE')
{
	echo '<pre>';
	print_r($data);
	echo '</pre>';
	die;
}
function ___tagembed__convertObjectToArray($data)
{
	$data = wp_json_encode($data);
	return json_decode($data, true);
}
/* --Start__ Sanetize All Input */
function ___tagembed__inputSanetize($data)
{
	$data = (string)$data;
	if (preg_match('/<[^>]*>/', $data)) :
		return ___tagembed__exitWithDanger('Special characters  are not allowed. Please remove them and try again.');
	endif;
}
/* --End Sanetize All Input */
/* --Start-- Sanitize Request Data */
function ___tagembed__sanitizeRequestData($__tagembed__request_input_data)
{
	$__tagembed__Input_return_data = [];
	foreach ($__tagembed__request_input_data as $__tagembed__request_input_key => $__tagembed__request_input) :
		$__tagembed__Input_return_data[$__tagembed__request_input_key] = sanitize_text_field($__tagembed__request_input);
	endforeach;
	return $__tagembed__Input_return_data;
}
/*--End-- Sanitize Request Data*/

```
