Dumped Contents
In
CatalogController.php
line 80:
//content path
$content = $c_serv->get_seo_content($path);
if ($content) dump($content->getId() . ': ' . $content->getShortTitle());
$resp_404 = $this->render('@Store/ui/404.html.twig');
dump($path);
"1327: Коробка-чемодан с японским мотивом"
In
CatalogController.php
line 85:
dump($path);
//check template exist
$template_hook = $c_serv->check_template_hook($path);
dump('hook: ' . $template_hook);
"hook: "
In
CatalogController.php
line 133:
}
}
if (!$content || substr($path, -1) != '/') { //redirect trailing slash
$redirect_path = $c_serv->get_redirect_path($path);
if (!$redirect_path) {
//throw $this->createNotFoundException('Содержание не найдено...');
"view type: default"
In
SeoContent.php
line 457:
uasort(
$p,
function (SeoParagraph $p1, SeoParagraph $p2) {
$s1 = $p1->getSortOrder();
$s2 = $p2->getSortOrder();
if (!$s1) $s1 = 100;
if (!$s2) $s2 = 100;
[]