File "SiteProfileController.php"
Full Path: /home/shadsolw/public_html/wp-content/plugins/extendify/app/Shared/Controllers/SiteProfileController.php
File size: 1.02 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Controls Site Profile options
*/
namespace Extendify\Shared\Controllers;
defined('ABSPATH') || die('No direct access.');
use Extendify\Shared\Services\Sanitizer;
/**
* The controller for persisting site data
*/
class SiteProfileController
{
/**
* Persist single data
*
* @param \WP_REST_Request $request - The request.
* @return \WP_REST_Response
*/
public static function store($request)
{
$value = $request->get_param('siteProfile');
\update_option('extendify_site_profile', Sanitizer::sanitizeUnknown($value));
$siteProfile = is_string($value) ? json_decode($value, true) : $value;
return new \WP_REST_Response($siteProfile);
}
/**
* Get option data by name.
*
* @return \WP_REST_Response
*/
public static function get()
{
$data = \get_option('extendify_site_profile', []);
$siteProfile = is_string($data) ? json_decode($data, true) : $data;
return new \WP_REST_Response($siteProfile);
}
}