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);
"3307: Упаковка для городского сада - Soy tu Huerto"
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
TwigChildren.php
line 100:
public function get_childrens($content_id, $type_name, $recursive = false)
{
dump('GC: ' . $content_id . ' / ' . $type_name . ' / ' . $recursive);
//$sort_root = false;
$pseudo_id = $type_name . $content_id;
if (array_key_exists($pseudo_id, $this->chidrens)) return $this->chidrens[$pseudo_id];
"GC: 1488 / wiki_category / "
In
TwigChildren.php
line 100:
public function get_childrens($content_id, $type_name, $recursive = false)
{
dump('GC: ' . $content_id . ' / ' . $type_name . ' / ' . $recursive);
//$sort_root = false;
$pseudo_id = $type_name . $content_id;
if (array_key_exists($pseudo_id, $this->chidrens)) return $this->chidrens[$pseudo_id];
"GC: 1488 / wiki_category / "
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;
[]