# extendify/2.2.0/app/HelpCenter/Controllers/RouterController.php

Extendify, version 2.2.0. 45 lines.

- Page: https://pluginprobe.com/plugins/extendify/2.2.0/code/app/HelpCenter/Controllers/RouterController.php
- Raw: https://pluginprobe.com/plugins/extendify/2.2.0/raw/app/HelpCenter/Controllers/RouterController.php
- Modified: 2025-05-22T18:26:12+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/extendify/2.2.0/code/app/HelpCenter/Controllers/RouterController.php#L10-L20`.

```php
<?php

/**
 * Controls Router details
 */

namespace Extendify\HelpCenter\Controllers;

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

use Extendify\Shared\Services\Sanitizer;

/**
 * The controller for plugin dependency checking, etc
 */

class RouterController
{
    /**
     * Return the data
     *
     * @return \WP_REST_Response
     */
    public static function get()
    {
        $data = get_option('extendify_help_center_router', []);
        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 = $request->get_param('state');
        update_option('extendify_help_center_router', [
            'state' => Sanitizer::sanitizeArray($data),
        ]);
        return new \WP_REST_Response($data);
    }
}

```
