Bonjour,
J'utilise PhpEcho comme moteur de rendu pour créer mes pages en me basant sur le tuto de rawsrc.
Tout fonctionne sauf l'inclusion du fichier 'block/header.php'. Je n'ai aucun message d'erreur.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 <?php declare(strict_types=1); // HOMEPAGE require_once DIR_ROOT.'vendor'.DIRECTORY_SEPARATOR.'autoload.php'; use rawsrc\PhpEcho\PhpEcho; PhpEcho::setTemplateDirRoot(DIR_ROOT.'view'.DIRECTORY_SEPARATOR.'fr'); $home = new PhpEcho('layout/main.php'); $home['title'] = 'Portail Proginet'; $home['description'] = 'Portail de présentation des applications Proginet'; $body = new PhpEcho('block/home.php'); $body['header'] = new PhpEcho('block/header.php'); var_dump($body['header']); $home['body'] = $body; echo $home;
Partager