HEX
Server: Apache/2
System: Linux server-27-254-144-72.da.direct 5.10.0-33-amd64 #1 SMP Debian 5.10.226-1 (2024-10-03) x86_64
User: pokaorgani (1114)
PHP: 8.1.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/pokaorgani/public_html/wp-content/plugins/gallery-by-supsystic/vendor/Rsc/Mvc/Controller.php
<?php

#[\AllowDynamicProperties]
class RscSgg_Mvc_Controller
{

    /**
     * @var RscSgg_Environment
     */
    private $environment;

    /**
     * @var RscSgg_Http_Request
     */
    private $request;

    /**
     * Constructor
     * @param RscSgg_Environment $environment
     * @param RscSgg_Http_Request $request
     */
    public function __construct(
        RscSgg_Environment $environment,
        RscSgg_Http_Request $request
    ) {
        $this->environment = $environment;
        $this->request = $request;
        $this->models = array();
    }

    /**
     * @param string $method The name of the method
     * @param array $arguments An array of arguments
     * @return mixed
     * @throws BadMethodCallException If specified method does not exists
     */
    public function __call($method, $arguments)
    {
        if (!method_exists($this->environment, $method)) {
            throw new BadMethodCallException(
                sprintf('Unexpected method: %s', $method)
            );
        }

        return call_user_func_array(
            array($this->environment, $method),
            $arguments
        );
    }

    /**
     * Creates new response
     * @param string $template The name of the template
     * @param array $data An associative array of the data
     * @return RscSgg_Http_Response
     */
    public function response($template, array $data = array())
    {
        if ($template != RscSgg_Http_Response::AJAX) {
            try {
                $twig = $this->environment->getTwig();
                $content = $twig->render($template, $data);
            } catch (Exception $e) {
                wp_die ($e->getMessage());
            }
        } else {
            wp_send_json($data);
        }

        return RscSgg_Http_Response::create()->setContent($content);
    }

    /**
     * Generates the URL the to specified path
     * @param string $module The name of the module
     * @param string $action The name of the action
     * @param array $parameters An assoc array of parameters
     * @return string|void
     */
    public function generateUrl($module, $action = 'index', array $parameters = array())
    {
        $parameters = (!empty($parameters) ? '&' . http_build_query($parameters) : null);
        $slug = $this->getEnvironment()->getMenu()->getMenuSlug();

        return admin_url('admin.php?page=' . $slug . '&module=' . $module . '&action=' . $action . $parameters);
    }

    /**
     * Makes redirects to the specified URL
     * @param string $url
     * @return \RscSgg_Http_Response
     */
    public function redirect($url)
    {
        if (!headers_sent()) {
            header(sprintf('Location: %s', $url));
            exit;
        }

        $content = "<script type=\"text/javascript\">document.location.href = '$url'</script>";

        return RscSgg_Http_Response::create()->setContent($content);
    }

    /**
     * Returns an instance of the environment
     * @return \RscSgg_Environment
     */
    public function getEnvironment()
    {
        return $this->environment;
    }

    /**
     * Returns an instance of the current request
     * @return \RscSgg_Http_Request
     */
    public function getRequest()
    {
        return $this->request;
    }

    public function requireNonces() {
        return array();
    }
}