projekt templade added

This commit is contained in:
2025-06-12 16:36:11 +02:00
parent d10b697c8c
commit 526b6504a8
22 changed files with 558 additions and 0 deletions

25
Library/ErrorMsg.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
namespace ppa\Library;
use ppa\Library\View;
class ErrorMsg
{
protected $view;
public function __construct($msg = 'Ihre Anfrage konnte nicht verarbeitet werden', $ex = '')
{
$this->view = new \ppa\Library\View(dirname(__DIR__).DIRECTORY_SEPARATOR.'Views'
, 'Error', 'showErrMsg');
$this->view->setVars([
'error' => $msg,
'debug' => $ex
]);
$this->view->render();
}
}