File "ImageGenerationController.php"

Full Path: /home/shadsolw/public_html/wp-content/plugins/extendify/app/Shared/Controllers/ImageGenerationController.php
File size: 887 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/**
 * Controls Draft Settings
 */

namespace Extendify\Shared\Controllers;

defined('ABSPATH') || die('No direct access.');

use Extendify\Shared\Services\Sanitizer;

/**
 * The controller for keeping draft settings in sync
 */

class ImageGenerationController
{
    /**
     * Return the data
     *
     * @return \WP_REST_Response
     */
    public static function get()
    {
        $data = get_option('extendify_draft_settings', []);
        return new \WP_REST_Response($data);
    }

    /**
     * Persist the data
     *
     * @param \WP_REST_Request $request - The request.
     * @return \WP_REST_Response
     */
    public static function store($request)
    {
        $data = json_decode($request->get_param('state'), true);
        update_option('extendify_draft_settings', Sanitizer::sanitizeArray($data));
        return new \WP_REST_Response($data);
    }
}