PHP 8.2.31
Preview: SiteProfileController.php Size: 980 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/app/Shared/Controllers/SiteProfileController.php

<?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()
    {
        $siteProfile = \get_option('extendify_site_profile', []);
        return new \WP_REST_Response($siteProfile);
    }
}

Directory Contents

Dirs: 0 × Files: 7

Name Size Perms Modified Actions
885 B lrw-r--r-- 2025-05-22 22:26:12
Edit Download
904 B lrw-r--r-- 2025-06-09 17:02:32
Edit Download
887 B lrw-r--r-- 2025-10-23 20:20:58
Edit Download
2.31 KB lrw-r--r-- 2025-05-22 22:26:12
Edit Download
980 B lrw-r--r-- 2026-03-19 23:35:18
Edit Download
902 B lrw-r--r-- 2025-05-22 22:26:12
Edit Download
1.21 KB lrw-r--r-- 2025-05-22 22:26:12
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).