Dumped Contents
In
ConfMapping.php
line 38:
// Crée le dossier si inexistant
$cacheDir = dirname($this->cacheFile);
dump($cacheDir);
// if (!$this->fs->exists($cacheDir)) {
// $this->fs->mkdir($cacheDir, 0755);
// }
"/home/cp340883/public_html/pilotmy.justarigolo.fr/pilotmy/var/cache/dev"
In
ConfMapping.php
line 61:
// Retourne un array
$this->types = include $this->cacheFile;
dump($this->types);
}
else
{
// Fichier inexistant → vide
array:1 [
"nom_de_la_case" => array:2 [
"entity" => "App\Entity\ConfNomDeLaCase"
"factory" => "createConfNomDeLaCase"
]
]
In
ZFrontController.php
line 194:
// 4. recup favicon
$favicon = $this->faviconRepo->find(1);
dump($favicon);
// 5. recup logo
$logo = $this->logoRepo->find(1);
dump($logo);
App\Entity\Interface\Favicon {#1437
-id: 1
-png32: null
-png16: null
-ico: null
-png180: null
-theme_color: null
-png192: null
-png512: null
-svg_icon: null
-svg_color: null
-tile_color: null
-png70: null
-png150: null
-png310: null
-png310w150: null
-background_color: null
}
In
ZFrontController.php
line 198:
// 5. recup logo
$logo = $this->logoRepo->find(1);
dump($logo);
// 6. recup bootstrap
$bootstraps = $this->bootstrapRepo->findActif();
$bootstrap = $bootstraps[0];
App\Entity\Interface\Logo {#1532
-id: 1
-logoFSp: null
-logoFSm: null
-logoFSg: null
-logoFSv: null
-logoFCp: null
-logoFCm: null
-logoFCg: null
-logoFCv: null
-logoNBFCp: null
-logoNBFCm: null
-logoNBFCg: null
-logoNBFCv: null
-logoNBFSp: null
-logoNBFSm: null
-logoNBFSg: null
-logoNBFSv: null
-logoFSvw: null
-logoFSvh: null
-logoFCvw: null
-logoFCvh: null
-logoNBFCvw: null
-logoNBFCvh: null
-logoNBFSvw: null
-logoNBFSvh: null
}
In
ZFrontController.php
line 203:
$bootstraps = $this->bootstrapRepo->findActif();
$bootstrap = $bootstraps[0];
dump($bootstrap);
// 7. recup jquery
$jquerys = $this->jqueryRepo->findActif();
$jquery = $jquerys[0];
App\Entity\Interface\Bootstrap {#1606
-id: 1
-version: "bootstrap-5.3.3"
-codeHead: "<link href="/modules/bootstrap-5.3.3-dist/css/bootstrap.min.css" rel="stylesheet">"
-codeBody: "<script src="/modules/bootstrap-5.3.3-dist/js/bootstrap.bundle.min.js"></script>"
-actif: true
}
In
ZFrontController.php
line 208:
$jquerys = $this->jqueryRepo->findActif();
$jquery = $jquerys[0];
dump($jquery);
// 8. recup template
$templates = $this->templateRepo->findActif();
$template = $templates[0];
App\Entity\Interface\Jquery {#1643
-id: 1
-version: "jquery-3.6.0"
-codeHead: null
-codeBody: "<script src="{{ pathLocal }}/modules/jquery-3.6.0.min.js"></script>"
-actif: true
}
In
ZFrontController.php
line 213:
$templates = $this->templateRepo->findActif();
$template = $templates[0];
dump($template);
// 9.1. si la page home n existe pas active, redirectionne vers page en construction
if (count($pages) < 1)
{
App\Entity\Interface\Template {#1682
-id: 2
-nom: "animalerie"
-actif: true
-codeHead: """
<link href="/templates/animalerie/animalerie.css" rel="stylesheet">\r\n
<link href="/templates/animalerie/style.css" rel="stylesheet">
"""
-codeBody: """
<script src="/templates/animalerie/animalerie.js"></script>\r\n
<script src="/templates/animalerie/script.js"></script>
"""
-dateCrea: DateTime @1763201960 {#1684
date: 2025-11-15 10:19:20.0 UTC (+00:00)
}
}
In
ZFrontController.php
line 253:
else
{
dump($url);
dump($slug);
// 1. cas particulier agenda
if($slug == "agenda")
"/pdsPlume/collections/BELED-Violet-SacDos.html"
In
ZFrontController.php
line 254:
{
dump($url);
dump($slug);
// 1. cas particulier agenda
if($slug == "agenda")
{
"pdsPlume"
In
ZFrontController.php
line 495:
// 1. récupère la page avec l url
$pages = $this->pagesRepo->findPagesByUrlActive($url);
dump($pages);
}
}
// 10.1. S'il n'existe pas de page construit 404
[]