ApplicationRouting::backendAjaxController PHP Method

backendAjaxController() public method

Runs the backend ajax requests
public backendAjaxController ( ) : Symfony\Component\HttpFoundation\Response
return Symfony\Component\HttpFoundation\Response
    public function backendAjaxController()
    {
        defined('APPLICATION') || define('APPLICATION', 'Backend');
        $applicationClass = $this->initializeBackend('BackendAjax');
        $application = new $applicationClass($this->container->get('kernel'));
        return $this->handleApplication($application);
    }