ajout de test
This commit is contained in:
parent
3d9826a983
commit
d4362546a5
@ -24,6 +24,14 @@ spl_autoload_register(function ($className) {
|
||||
'Portfolio\\Source\\Design\\Controller\\Contact\\' => __DIR__ . '/../../source/design/controller/contact/',
|
||||
'Portfolio\\Source\\Design\\Controller\\Contact\\Read\\' => __DIR__ . '/../../source/design/controller/contact/read',
|
||||
|
||||
|
||||
|
||||
'Portfolio\\Source\\Design\\Controller\\Test\\' => __DIR__ . '/../../source/design/controller/test/',
|
||||
'Portfolio\\Source\\Design\\Controller\\Test\\Create\\' => __DIR__ . '/../../source/design/controller/test/create',
|
||||
'Portfolio\\Source\\Design\\Controller\\Test\\Read\\' => __DIR__ . '/../../source/design/controller/test/read',
|
||||
|
||||
|
||||
|
||||
'Portfolio\\Source\\Design\\Controller\\' => __DIR__ . '/../../source/design/controller/',
|
||||
];
|
||||
|
||||
|
@ -25,4 +25,11 @@ $router->get('/tech/:id', 'Portfolio\Source\Design\Controller\Tech\Read\Read@rea
|
||||
$router->get('/contact', 'Portfolio\Source\Design\Controller\Contact\Index@index');
|
||||
$router->get('/contact/:id', 'Portfolio\Source\Design\Controller\Contact\Read\Read@read');
|
||||
|
||||
|
||||
|
||||
$router->get('/test', 'Portfolio\Source\Design\Controller\Test\Index@index');
|
||||
$router->get('/test/:id', 'Portfolio\Source\Design\Controller\Test\Read\Read@read');
|
||||
|
||||
|
||||
|
||||
$router->run();
|
@ -7,6 +7,7 @@ use Portfolio\Configure\Database\Connection;
|
||||
class Base
|
||||
{
|
||||
protected string $layout = 'portfolio/template/base.html';
|
||||
protected $databaseConnection;
|
||||
|
||||
public function __construct(Connection $databaseConnection)
|
||||
{
|
||||
@ -15,7 +16,6 @@ class Base
|
||||
|
||||
public function show(string $path, array $params = null): void
|
||||
{
|
||||
// Conversion du chemin en fichier HTML
|
||||
$viewPath = dirname(__DIR__, 3) . '/template/' . str_replace('.', '/', $path) . '.html';
|
||||
|
||||
if (!is_file($viewPath)) {
|
||||
@ -29,23 +29,25 @@ class Base
|
||||
// Remplacer les variables dynamiques dans la vue
|
||||
if ($params) {
|
||||
foreach ($params as $key => $value) {
|
||||
$viewContent = str_replace('{{ ' . $key . ' }}', htmlspecialchars($value), $viewContent);
|
||||
if (is_array($value) || is_object($value)) {
|
||||
// Affichage propre pour les tableaux/objets
|
||||
$replacement = '<pre>' . htmlspecialchars(print_r($value, true)) . '</pre>';
|
||||
} else {
|
||||
$replacement = htmlspecialchars((string)$value);
|
||||
}
|
||||
$viewContent = str_replace('{{ ' . $key . ' }}', $replacement, $viewContent);
|
||||
}
|
||||
}
|
||||
|
||||
$layoutPath = dirname(__DIR__, 3) . '/template/base.html';
|
||||
|
||||
// Charger le layout principal
|
||||
if (!file_exists($layoutPath)) {
|
||||
throw new \Exception("Layout introuvable : $layoutPath");
|
||||
}
|
||||
|
||||
$layoutContent = file_get_contents($layoutPath);
|
||||
|
||||
// Injecter le contenu de la vue dans le layout
|
||||
$finalHtml = str_replace('{{ content }}', $viewContent, $layoutContent);
|
||||
|
||||
// Afficher le rendu final
|
||||
echo $finalHtml;
|
||||
}
|
||||
}
|
@ -6,9 +6,9 @@ use Portfolio\Source\Design\Controller\Base;
|
||||
|
||||
class Index extends Base
|
||||
{
|
||||
public function index(): void
|
||||
public function index()
|
||||
{
|
||||
// Affiche la vue portfolio/template/home/index.html dans le layout portfolio/template/base.html
|
||||
$this->show('home.index');
|
||||
return $this->show('home.index');
|
||||
}
|
||||
}
|
@ -8,15 +8,6 @@ class Read extends Base
|
||||
{
|
||||
public function read(int $id)
|
||||
{
|
||||
$requestDatabase = $this->databaseConnection->get_pdo()->query('SELECT * FROM Test');
|
||||
$test = $requestDatabase->fetchAll();
|
||||
foreach ($test as $tests) {
|
||||
echo $tests->id;
|
||||
echo " - ";
|
||||
echo $tests->label;
|
||||
echo " <br> ";
|
||||
}
|
||||
|
||||
|
||||
return $this->show('home.read.read', ['id' => $id]);
|
||||
}
|
||||
|
17
source/design/controller/test/index.php
Normal file
17
source/design/controller/test/index.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Portfolio\Source\Design\Controller\Test;
|
||||
|
||||
use Portfolio\Source\Design\Controller\Base;
|
||||
|
||||
class Index extends Base
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$requestDatabase = $this->databaseConnection->get_pdo()->query('SELECT * FROM Test ORDER BY id DESC');
|
||||
$tests = $requestDatabase->fetchAll();
|
||||
|
||||
// Affiche la vue portfolio/template/test/index.html dans le layout portfolio/template/base.html
|
||||
return $this->show('test.index', compact('tests'));
|
||||
}
|
||||
}
|
22
source/design/controller/test/read/read.php
Normal file
22
source/design/controller/test/read/read.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Portfolio\Source\Design\Controller\Test\Read;
|
||||
|
||||
use Portfolio\Source\Design\Controller\Base;
|
||||
|
||||
class Read extends Base
|
||||
{
|
||||
public function read(int $id)
|
||||
{
|
||||
$requestDatabase = $this->databaseConnection->get_pdo()->query('SELECT * FROM Test');
|
||||
$test = $requestDatabase->fetchAll();
|
||||
foreach ($test as $tests) {
|
||||
echo $tests->id;
|
||||
echo " - ";
|
||||
echo $tests->label;
|
||||
echo " <br> ";
|
||||
}
|
||||
|
||||
return $this->show('test.read.read', ['id' => $id]);
|
||||
}
|
||||
}
|
@ -21,6 +21,6 @@
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h2>Détail de l'article</h2>
|
||||
<h2>détail home</h2>
|
||||
<p>Identifiant : {{ id }}</p>
|
||||
</main>
|
27
template/test/index.html
Normal file
27
template/test/index.html
Normal file
@ -0,0 +1,27 @@
|
||||
<header>
|
||||
<div id="logo">
|
||||
<h1>SERMAND Maxim</h1>
|
||||
</div>
|
||||
<button id="menu-toggle" aria-expanded="false">☰</button>
|
||||
<nav id="navbar">
|
||||
<ul>
|
||||
<li><a href="http://localhost/portfolio/" class="active">Accueil</a></li>
|
||||
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
|
||||
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
|
||||
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
|
||||
<li><a href="http://localhost/portfolio/tech/">Veilles technologiques</a></li>
|
||||
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
|
||||
<li class="theme-switch-wrapper">
|
||||
<label class="theme-switch">
|
||||
<input type="checkbox" id="theme-toggle">
|
||||
<span class="slider"></span>
|
||||
</label>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Test</h1>
|
||||
<p>Ceci est un test.</p>
|
||||
{{ tests }}
|
||||
</main>
|
26
template/test/read/read.html
Normal file
26
template/test/read/read.html
Normal file
@ -0,0 +1,26 @@
|
||||
<header>
|
||||
<div id="logo">
|
||||
<h1>SERMAND Maxim</h1>
|
||||
</div>
|
||||
<button id="menu-toggle" aria-expanded="false">☰</button>
|
||||
<nav id="navbar">
|
||||
<ul>
|
||||
<li><a href="http://localhost/portfolio/" class="active">Accueil</a></li>
|
||||
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
|
||||
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
|
||||
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
|
||||
<li><a href="http://localhost/portfolio/tech/">Veilles technologiques</a></li>
|
||||
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
|
||||
<li class="theme-switch-wrapper">
|
||||
<label class="theme-switch">
|
||||
<input type="checkbox" id="theme-toggle">
|
||||
<span class="slider"></span>
|
||||
</label>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h2>Test</h2>
|
||||
<p>Identifiant : {{ id }}</p>
|
||||
</main>
|
Loading…
x
Reference in New Issue
Block a user