Initial upload of the control panel

This commit is contained in:
Pinga 2023-08-07 13:14:05 +03:00
parent f21bd93fbc
commit 7eab26586c
791 changed files with 312718 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?php
namespace App\Middleware;
use Psr\Http\Message\ServerRequestInterface as Request;
use Psr\Http\Server\RequestHandlerInterface as RequestHandler;
/**
* OldInputMiddleware
*
* @author Hezekiah O. <support@hezecom.com>
*/
class OldInputMiddleware extends Middleware
{
public function __invoke(Request $request, RequestHandler $handler)
{
$this->container->get('view')->getEnvironment()->addGlobal('old', isset($_SESSION['old']) ? $_SESSION['old'] : '');
$_SESSION['old'] = $request->getParsedBody();
$response = $handler->handle($request);
return $response;
}
}