Nette\Database\DriverException #42S22
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'hidden' in 'where clause' search►
SQL
SELECT *
FROM `page`
WHERE (`lang` = 'de') AND (`main` = 1) and hidden is null AND created IS NOT NULL
ORDER BY sort ASC
Source file
File: .../web/vendor/nette/database/src/Database/ResultSet.php:78
68: $connection->getPdo()->{substr($queryString, 2)}(); 69: } elseif ($queryString !== null) { 70: $types = ['boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL]; 71: $this->pdoStatement = $connection->getPdo()->prepare($queryString); 72: foreach ($params as $key => $value) { 73: $type = gettype($value); 74: $this->pdoStatement->bindValue(is_int($key) ? $key + 1 : $key, $value, $types[$type] ?? PDO::PARAM_STR); 75: } 76: 77: $this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC); 78: @$this->pdoStatement->execute(); // @ PHP generates warning when ATTR_ERRMODE = ERRMODE_EXCEPTION bug #73878 79: } 80: } catch (\PDOException $e) { 81: $e = $connection->getDriver()->convertException($e); 82: $e->queryString = $queryString;
Call stack
57: } elseif (in_array($code, [1062, 1557, 1569, 1586], true)) { 58: return Nette\Database\UniqueConstraintViolationException::from($e); 59: 60: } elseif ($code >= 2001 && $code <= 2028) { 61: return Nette\Database\ConnectionException::from($e); 62: 63: } elseif (in_array($code, [1048, 1121, 1138, 1171, 1252, 1263, 1566], true)) { 64: return Nette\Database\NotNullConstraintViolationException::from($e); 65: 66: } else { 67: return Nette\Database\DriverException::from($e); 68: } 69: } 70: 71:
$src |
---|
71: $this->pdoStatement = $connection->getPdo()->prepare($queryString); 72: foreach ($params as $key => $value) { 73: $type = gettype($value); 74: $this->pdoStatement->bindValue(is_int($key) ? $key + 1 : $key, $value, $types[$type] ?? PDO::PARAM_STR); 75: } 76: 77: $this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC); 78: @$this->pdoStatement->execute(); // @ PHP generates warning when ATTR_ERRMODE = ERRMODE_EXCEPTION bug #73878 79: } 80: } catch (\PDOException $e) { 81: $e = $connection->getDriver()->convertException($e); 82: $e->queryString = $queryString; 83: $e->params = $params; 84: throw $e; 85: }
$e |
---|
223: 224: 225: /** 226: * Generates and executes SQL query. 227: * @param literal-string $sql 228: */ 229: public function query(string $sql, ...$params): ResultSet 230: { 231: [$this->sql, $params] = $this->preprocess($sql, ...$params); 232: try { 233: $result = new ResultSet($this, $this->sql, $params, $this->rowNormalizer); 234: } catch (PDOException $e) { 235: Arrays::invoke($this->onQuery, $this, $e); 236: throw $e; 237: }
$connection | |
---|---|
$queryString | 'SELECT * FROM `page` WHERE (`lang` = ?) AND (`main` = ?) and hidden is null AND created IS NOT NULL ORDER BY sort ASC'
|
$params | |
$normalizer |
165: return $this->connection->query($sql, ...$params)->fetchPairs(); 166: } 167: 168: 169: /** 170: * Shortcut for query()->fetchAll() 171: * @param literal-string $sql 172: */ 173: public function fetchAll(string $sql, ...$params): array 174: { 175: return $this->connection->query($sql, ...$params)->fetchAll(); 176: } 177: 178: 179: public static function literal(string $value, ...$params): SqlLiteral
$sql | 'SELECT * FROM ?name WHERE ? and hidden is null AND created IS NOT NULL ORDER BY sort ASC'
|
---|---|
#1 | 'page'
|
#2 |
246: $tableColumns = $this->getColumnsFields($table); 247: 248: if (!empty($isNotClosed)) { 249: return $this->database->fetchAll( 250: 'SELECT * FROM ?name WHERE created IS NOT NULL AND status != "closed" and hidden is null ORDER BY sort ASC', $table 251: ); 252: } 253: 254: if (in_array('sort', $tableColumns)) { 255: if (!empty($array)) { 256: return $this->database->fetchAll( 257: 'SELECT * FROM ?name WHERE ? and hidden is null AND created IS NOT NULL ORDER BY sort ASC', $table, $array 258: ); 259: } else { 260: return $this->database->fetchAll(
$sql | 'SELECT * FROM ?name WHERE ? and hidden is null AND created IS NOT NULL ORDER BY sort ASC'
|
---|---|
#1 | 'page'
|
#2 |
295: return $this->mainModel->countRecordsByParamId($this->tables['media'], 'subrecord_id', $id); 296: } 297: 298: public function getSubRecordParamValueById($id, $param) 299: { 300: return $this->mainModel->getParamValueById($this->tables['subrecord'], $id, $param); 301: } 302: 303: public function getMainNavigationByLang($language): array 304: { 305: return $this->mainModel->fetchAllRecordsByArray($this->tables['page'], ['lang'=>$language, 'main'=>true, ], null, 'sort'); 306: } 307: 308: public function getSubNavigationByLang($language): array 309: {
$table | 'page'
|
---|---|
$array | |
$search | null
|
$order | 'sort'
|
24: <div class="pl-6 pr-6 pt-6 color-secondary animated fadeInUp"> 25: 26: <div class="columns is-paddingless is-marginless"> 27: 28: '; 29: foreach ($iterator = $ʟ_it = new Latte\Essential\CachingIterator($languages, $ʟ_it ?? null) as $languagesItem) /* line 11 */ { 30: echo "\n"; 31: $recordSlugLng = 'slug_' . $languagesItem /* line 13 */; 32: $recordTitleLng = 'title_' . $languagesItem /* line 14 */; 33: $languagesItemName = 'language' . Nette\Utils\Strings::firstUpper($languagesItem) /* line 15 */; 34: $languagesItemNavigation = $presenter->getMainNavigationByLang($languagesItem) /* line 16 */; 35: $languagesItemSubNavigation = $presenter->getSubNavigationByLang($languagesItem) /* line 17 */; 36: echo ' 37: <div class="column is-paddingless is-marginless is-6-fullhd is-6-widescreen is-6-desktop is-12-tablet is-12-mobile mb-6"> 38:
6: <div class="column is-paddingless is-marginless"> 7: <div class="pl-6 pr-6 pt-6 color-secondary animated fadeInUp"> 8: 9: <div class="columns is-paddingless is-marginless"> 10: 11: {foreach $languages as $languagesItem} 12: 13: {var $recordSlugLng = 'slug_' . $languagesItem} 14: {var $recordTitleLng = 'title_' . $languagesItem} 15: {var $languagesItemName = 'language' . Nette\Utils\Strings::firstUpper($languagesItem)} 16: {var $languagesItemNavigation = $presenter->getMainNavigationByLang($languagesItem)} 17: {var $languagesItemSubNavigation = $presenter->getSubNavigationByLang($languagesItem)} 18: 19: <div class="column is-paddingless is-marginless is-6-fullhd is-6-widescreen is-6-desktop is-12-tablet is-12-mobile mb-6"> 20:
$language | 'de'
|
---|
150: } 151: 152: } elseif ($this->parentName) { // extends 153: $this->params = $params; 154: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 155: 156: } elseif ($block !== null) { // single block rendering 157: $this->renderBlock($block, $this->params); 158: 159: } else { 160: $this->main($params); 161: } 162: } 163: 164:
$ʟ_args | null
|
---|
193: } 194: 195: 196: /** 197: * @param string|\Closure|null $mod content-type name or modifier closure 198: * @internal 199: */ 200: public function renderToContentType(string|\Closure|null $mod, ?string $block = null): void 201: { 202: $this->filter( 203: fn() => $this->render($block), 204: $mod, 205: static::ContentType, 206: "'$this->name'", 207: );
$block | null
|
---|
302: $block->functions = array_merge($block->functions, $functions); 303: } 304: 305: 306: /** 307: * @param string|\Closure|null $mod content-type name or modifier closure 308: */ 309: private function filter(callable $function, string|\Closure|null $mod, string $contentType, string $name): void 310: { 311: if ($mod === null || $mod === $contentType) { 312: $function(); 313: 314: } elseif ($mod instanceof \Closure) { 315: echo $mod($this->capture($function), $contentType); 316:
192: return $referred; 193: } 194: 195: 196: /** 197: * @param string|\Closure|null $mod content-type name or modifier closure 198: * @internal 199: */ 200: public function renderToContentType(string|\Closure|null $mod, ?string $block = null): void 201: { 202: $this->filter( 203: fn() => $this->render($block), 204: $mod, 205: static::ContentType, 206: "'$this->name'",
$function | |
---|---|
$mod | 'html'
|
$contentType | 'html'
|
$name | ''/home/.sites/43/site7075321/web/app/Modules/Front/Presenters/templates/debo/_sections/sitemap.latte''
|
41: } 42: echo ' '; 43: if ($section != 'default') /* line 21 */ { 44: echo ' bg-transparent-8 '; 45: } 46: echo '"> 47: <div class="hero-body is-marginless is-paddingless"> 48: <div class="container is-fluid is-paddingless"> 49: <div class="" data-effect="fadeIn" data-effect-delay="200ms" data-effect-duration="800ms"> 50: '; 51: $this->createTemplate('../_sections/' . $page->action . '.latte', $this->params, 'include')->renderToContentType('html') /* line 35 */; 52: echo ' </div> 53: </div> 54: </div> 55: </section>
25: <div class="pl-6 pr-6 pt-6" n:if="!empty($page->subtitle)"> 26: <h2 data-effect="fadeInUp" 27: data-effect-delay="200ms" 28: data-effect-duration="1200ms" 29: class="color-secondary is-uppercase is-size-1-fullhd has-text-centered has-text-left-desktop"> 30: {$page->subtitle} 31: </h2> 32: </div> 33: *} 34: <div class="" data-effect="fadeIn" data-effect-delay="200ms" data-effect-duration="800ms"> 35: {include '../_sections/' . $page->action . '.latte'} 36: </div> 37: </div> 38: </div> 39: </section>
$mod | 'html'
|
---|
243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name", 257: );
$ʟ_args | null
|
---|
302: $block->functions = array_merge($block->functions, $functions); 303: } 304: 305: 306: /** 307: * @param string|\Closure|null $mod content-type name or modifier closure 308: */ 309: private function filter(callable $function, string|\Closure|null $mod, string $contentType, string $name): void 310: { 311: if ($mod === null || $mod === $contentType) { 312: $function(); 313: 314: } elseif ($mod instanceof \Closure) { 315: echo $mod($this->capture($function), $contentType); 316:
242: : ($this->blocks[self::LayerLocal][$name] ?? $this->blocks[self::LayerTop][$name] ?? null); 243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name",
$function | |
---|---|
$mod | 'html'
|
$contentType | 'html'
|
$name | 'block content'
|
540: echo ' is-halfheight-mobile '; 541: } 542: echo ' lines isolate"> 543: '; 544: $this->createTemplate('_elements/logo.latte', $this->params, 'include')->renderToContentType('html') /* line 210 */; 545: $this->createTemplate('_elements/sidebar.latte', $this->params, 'include')->renderToContentType('html') /* line 211 */; 546: echo ' </section> 547: </div> 548: <div class="col2"> 549: '; 550: $this->renderBlock('content', [], 'html') /* line 215 */; 551: if ($section != 'default') /* line 216 */ { 552: echo ' <footer> 553: '; 554: $this->createTemplate('_layout/footer.latte', $this->params, 'include')->renderToContentType('html') /* line 217 */;
205: 206: {*************************************** Subsection start ***************************************} 207: <div class="main-div" data-effect="fadeIn" data-effect-delay="0ms" data-effect-duration="1000ms" n:if="$section != 'default'"> 208: <div class="col1"> 209: <section class="hero is-fullheight {if $section != 'default'} is-halfheight-mobile {*if empty($record)} is-halfheight-mobile {/if*} {/if} lines isolate"> 210: {include '_elements/logo.latte'} 211: {include '_elements/sidebar.latte'} 212: </section> 213: </div> 214: <div class="col2"> 215: {include content} 216: <footer n:if="$section != 'default'"> 217: {include '_layout/footer.latte'} 218: </footer> 219: </div>
$name | 'content'
|
---|---|
$params | array (0)
|
$mod | 'html'
|
243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name", 257: );
$ʟ_args | null
|
---|
302: $block->functions = array_merge($block->functions, $functions); 303: } 304: 305: 306: /** 307: * @param string|\Closure|null $mod content-type name or modifier closure 308: */ 309: private function filter(callable $function, string|\Closure|null $mod, string $contentType, string $name): void 310: { 311: if ($mod === null || $mod === $contentType) { 312: $function(); 313: 314: } elseif ($mod instanceof \Closure) { 315: echo $mod($this->capture($function), $contentType); 316:
242: : ($this->blocks[self::LayerLocal][$name] ?? $this->blocks[self::LayerTop][$name] ?? null); 243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name",
$function | |
---|---|
$mod | null
|
$contentType | 'html'
|
$name | 'block main'
|
156: } 157: echo "\n"; 158: if (!empty($cfg->appTransition)) /* line 195 */ { 159: echo ' <div id="transition"></div> 160: '; 161: } 162: echo ' 163: <main'; 164: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('main')), '"'; 165: echo '>'; 166: $this->renderBlock('main', [], null, 'snippet') /* line 197 */; 167: echo '</main> 168: 169: <div'; 170: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('cookies')), '"';
187: <div n:snippet="preloader"></div> 188: 189: {include '_elements/preloader.latte'} 190: 191: <script type="application/javascript" src="{plink Homepage:jsMin}{$cfg->cacheKey}{time()}" async defer></script> 192: 193: <span id="circle" class="circle is-hidden-touch" n:if="$cfg->appCursorCircle"></span> 194: 195: <div id="transition" n:if="!empty($cfg->appTransition)"></div> 196: 197: <main n:snippet="main">{* data-naja-snippet-cache="off"*} 198: 199: {include '_elements/skip.latte'} 200: {include $templateRoot . '/_global/toolbar.latte'} 201: {include '_elements/menu.latte'}
$name | 'main'
|
---|---|
$params | array (0)
|
$mod | null
|
$layer | 'snippet'
|
150: } 151: 152: } elseif ($this->parentName) { // extends 153: $this->params = $params; 154: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 155: 156: } elseif ($block !== null) { // single block rendering 157: $this->renderBlock($block, $this->params); 158: 159: } else { 160: $this->main($params); 161: } 162: } 163: 164:
$ʟ_args | null
|
---|
144: 145: Filters::$xml = static::ContentType === Latte\ContentType::Xml; 146: 147: if ($this->referenceType === 'import') { 148: if ($this->parentName) { 149: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 150: } 151: 152: } elseif ($this->parentName) { // extends 153: $this->params = $params; 154: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 155: 156: } elseif ($block !== null) { // single block rendering 157: $this->renderBlock($block, $this->params); 158:
$block | null
|
---|
57: 58: 59: /** 60: * Renders template to output. 61: * @param object|mixed[] $params 62: */ 63: public function render(string $name, object|array $params = [], ?string $block = null): void 64: { 65: $template = $this->createTemplate($name, $this->processParams($params)); 66: $template->global->coreCaptured = false; 67: $template->render($block); 68: } 69: 70: 71: /**
$block | null
|
---|
36: return $this->latte; 37: } 38: 39: 40: /** 41: * Renders template to output. 42: */ 43: public function render(?string $file = null, array $params = []): void 44: { 45: Nette\Utils\Arrays::toObject($params, $this); 46: $this->latte->render($file ?: $this->file, $this); 47: } 48: 49: 50: /**
$name | '/home/.sites/43/site7075321/web/app/Modules/Front/Presenters/templates/debo/Homepage/default.latte'
|
---|---|
$params |
40: return $this->source; 41: } 42: 43: 44: /** 45: * Sends response to output. 46: */ 47: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse): void 48: { 49: if ($this->source instanceof Nette\Application\UI\Template) { 50: $this->source->render(); 51: 52: } else { 53: echo $this->source; 54: }
161: 162: Arrays::invoke($this->onPresenter, $this, $this->presenter); 163: $response = $this->presenter->run(clone $request); 164: 165: if ($response instanceof Responses\ForwardResponse) { 166: $request = $response->getRequest(); 167: goto process; 168: } 169: 170: Arrays::invoke($this->onResponse, $this, $response); 171: $response->send($this->httpRequest, $this->httpResponse); 172: } 173: 174: 175: public function processException(\Throwable $e): void
$httpRequest | |
---|---|
$httpResponse |
80: } 81: 82: 83: /** 84: * Dispatch a HTTP request to a front controller. 85: */ 86: public function run(): void 87: { 88: try { 89: Arrays::invoke($this->onStartup, $this); 90: $this->processRequest($this->createInitialRequest()); 91: Arrays::invoke($this->onShutdown, $this); 92: 93: } catch (\Throwable $e) { 94: Arrays::invoke($this->onError, $this, $e);
$request |
---|
1: <?php 2: 3: declare(strict_types=1); 4: 5: require __DIR__ . '/vendor/autoload.php'; 6: 7: $configurator = App\Bootstrap::boot(); 8: $container = $configurator->createContainer(); 9: $application = $container->getByType(Nette\Application\Application::class); 10: $application->run(); 11:
Exception
Caused by
PDOException #42S22
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'hidden' in 'where clause' search►
Source file
File: .../web/vendor/nette/database/src/Database/ResultSet.php:78
68: $connection->getPdo()->{substr($queryString, 2)}(); 69: } elseif ($queryString !== null) { 70: $types = ['boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL]; 71: $this->pdoStatement = $connection->getPdo()->prepare($queryString); 72: foreach ($params as $key => $value) { 73: $type = gettype($value); 74: $this->pdoStatement->bindValue(is_int($key) ? $key + 1 : $key, $value, $types[$type] ?? PDO::PARAM_STR); 75: } 76: 77: $this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC); 78: @$this->pdoStatement->execute(); // @ PHP generates warning when ATTR_ERRMODE = ERRMODE_EXCEPTION bug #73878 79: } 80: } catch (\PDOException $e) { 81: $e = $connection->getDriver()->convertException($e); 82: $e->queryString = $queryString;
Call stack
68: $connection->getPdo()->{substr($queryString, 2)}(); 69: } elseif ($queryString !== null) { 70: $types = ['boolean' => PDO::PARAM_BOOL, 'integer' => PDO::PARAM_INT, 'resource' => PDO::PARAM_LOB, 'NULL' => PDO::PARAM_NULL]; 71: $this->pdoStatement = $connection->getPdo()->prepare($queryString); 72: foreach ($params as $key => $value) { 73: $type = gettype($value); 74: $this->pdoStatement->bindValue(is_int($key) ? $key + 1 : $key, $value, $types[$type] ?? PDO::PARAM_STR); 75: } 76: 77: $this->pdoStatement->setFetchMode(PDO::FETCH_ASSOC); 78: @$this->pdoStatement->execute(); // @ PHP generates warning when ATTR_ERRMODE = ERRMODE_EXCEPTION bug #73878 79: } 80: } catch (\PDOException $e) { 81: $e = $connection->getDriver()->convertException($e); 82: $e->queryString = $queryString;
223: 224: 225: /** 226: * Generates and executes SQL query. 227: * @param literal-string $sql 228: */ 229: public function query(string $sql, ...$params): ResultSet 230: { 231: [$this->sql, $params] = $this->preprocess($sql, ...$params); 232: try { 233: $result = new ResultSet($this, $this->sql, $params, $this->rowNormalizer); 234: } catch (PDOException $e) { 235: Arrays::invoke($this->onQuery, $this, $e); 236: throw $e; 237: }
$connection | |
---|---|
$queryString | 'SELECT * FROM `page` WHERE (`lang` = ?) AND (`main` = ?) and hidden is null AND created IS NOT NULL ORDER BY sort ASC'
|
$params | |
$normalizer |
165: return $this->connection->query($sql, ...$params)->fetchPairs(); 166: } 167: 168: 169: /** 170: * Shortcut for query()->fetchAll() 171: * @param literal-string $sql 172: */ 173: public function fetchAll(string $sql, ...$params): array 174: { 175: return $this->connection->query($sql, ...$params)->fetchAll(); 176: } 177: 178: 179: public static function literal(string $value, ...$params): SqlLiteral
$sql | 'SELECT * FROM ?name WHERE ? and hidden is null AND created IS NOT NULL ORDER BY sort ASC'
|
---|---|
#1 | 'page'
|
#2 |
246: $tableColumns = $this->getColumnsFields($table); 247: 248: if (!empty($isNotClosed)) { 249: return $this->database->fetchAll( 250: 'SELECT * FROM ?name WHERE created IS NOT NULL AND status != "closed" and hidden is null ORDER BY sort ASC', $table 251: ); 252: } 253: 254: if (in_array('sort', $tableColumns)) { 255: if (!empty($array)) { 256: return $this->database->fetchAll( 257: 'SELECT * FROM ?name WHERE ? and hidden is null AND created IS NOT NULL ORDER BY sort ASC', $table, $array 258: ); 259: } else { 260: return $this->database->fetchAll(
$sql | 'SELECT * FROM ?name WHERE ? and hidden is null AND created IS NOT NULL ORDER BY sort ASC'
|
---|---|
#1 | 'page'
|
#2 |
295: return $this->mainModel->countRecordsByParamId($this->tables['media'], 'subrecord_id', $id); 296: } 297: 298: public function getSubRecordParamValueById($id, $param) 299: { 300: return $this->mainModel->getParamValueById($this->tables['subrecord'], $id, $param); 301: } 302: 303: public function getMainNavigationByLang($language): array 304: { 305: return $this->mainModel->fetchAllRecordsByArray($this->tables['page'], ['lang'=>$language, 'main'=>true, ], null, 'sort'); 306: } 307: 308: public function getSubNavigationByLang($language): array 309: {
$table | 'page'
|
---|---|
$array | |
$search | null
|
$order | 'sort'
|
24: <div class="pl-6 pr-6 pt-6 color-secondary animated fadeInUp"> 25: 26: <div class="columns is-paddingless is-marginless"> 27: 28: '; 29: foreach ($iterator = $ʟ_it = new Latte\Essential\CachingIterator($languages, $ʟ_it ?? null) as $languagesItem) /* line 11 */ { 30: echo "\n"; 31: $recordSlugLng = 'slug_' . $languagesItem /* line 13 */; 32: $recordTitleLng = 'title_' . $languagesItem /* line 14 */; 33: $languagesItemName = 'language' . Nette\Utils\Strings::firstUpper($languagesItem) /* line 15 */; 34: $languagesItemNavigation = $presenter->getMainNavigationByLang($languagesItem) /* line 16 */; 35: $languagesItemSubNavigation = $presenter->getSubNavigationByLang($languagesItem) /* line 17 */; 36: echo ' 37: <div class="column is-paddingless is-marginless is-6-fullhd is-6-widescreen is-6-desktop is-12-tablet is-12-mobile mb-6"> 38:
6: <div class="column is-paddingless is-marginless"> 7: <div class="pl-6 pr-6 pt-6 color-secondary animated fadeInUp"> 8: 9: <div class="columns is-paddingless is-marginless"> 10: 11: {foreach $languages as $languagesItem} 12: 13: {var $recordSlugLng = 'slug_' . $languagesItem} 14: {var $recordTitleLng = 'title_' . $languagesItem} 15: {var $languagesItemName = 'language' . Nette\Utils\Strings::firstUpper($languagesItem)} 16: {var $languagesItemNavigation = $presenter->getMainNavigationByLang($languagesItem)} 17: {var $languagesItemSubNavigation = $presenter->getSubNavigationByLang($languagesItem)} 18: 19: <div class="column is-paddingless is-marginless is-6-fullhd is-6-widescreen is-6-desktop is-12-tablet is-12-mobile mb-6"> 20:
$language | 'de'
|
---|
150: } 151: 152: } elseif ($this->parentName) { // extends 153: $this->params = $params; 154: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 155: 156: } elseif ($block !== null) { // single block rendering 157: $this->renderBlock($block, $this->params); 158: 159: } else { 160: $this->main($params); 161: } 162: } 163: 164:
$ʟ_args | null
|
---|
193: } 194: 195: 196: /** 197: * @param string|\Closure|null $mod content-type name or modifier closure 198: * @internal 199: */ 200: public function renderToContentType(string|\Closure|null $mod, ?string $block = null): void 201: { 202: $this->filter( 203: fn() => $this->render($block), 204: $mod, 205: static::ContentType, 206: "'$this->name'", 207: );
$block | null
|
---|
302: $block->functions = array_merge($block->functions, $functions); 303: } 304: 305: 306: /** 307: * @param string|\Closure|null $mod content-type name or modifier closure 308: */ 309: private function filter(callable $function, string|\Closure|null $mod, string $contentType, string $name): void 310: { 311: if ($mod === null || $mod === $contentType) { 312: $function(); 313: 314: } elseif ($mod instanceof \Closure) { 315: echo $mod($this->capture($function), $contentType); 316:
192: return $referred; 193: } 194: 195: 196: /** 197: * @param string|\Closure|null $mod content-type name or modifier closure 198: * @internal 199: */ 200: public function renderToContentType(string|\Closure|null $mod, ?string $block = null): void 201: { 202: $this->filter( 203: fn() => $this->render($block), 204: $mod, 205: static::ContentType, 206: "'$this->name'",
$function | |
---|---|
$mod | 'html'
|
$contentType | 'html'
|
$name | ''/home/.sites/43/site7075321/web/app/Modules/Front/Presenters/templates/debo/_sections/sitemap.latte''
|
41: } 42: echo ' '; 43: if ($section != 'default') /* line 21 */ { 44: echo ' bg-transparent-8 '; 45: } 46: echo '"> 47: <div class="hero-body is-marginless is-paddingless"> 48: <div class="container is-fluid is-paddingless"> 49: <div class="" data-effect="fadeIn" data-effect-delay="200ms" data-effect-duration="800ms"> 50: '; 51: $this->createTemplate('../_sections/' . $page->action . '.latte', $this->params, 'include')->renderToContentType('html') /* line 35 */; 52: echo ' </div> 53: </div> 54: </div> 55: </section>
25: <div class="pl-6 pr-6 pt-6" n:if="!empty($page->subtitle)"> 26: <h2 data-effect="fadeInUp" 27: data-effect-delay="200ms" 28: data-effect-duration="1200ms" 29: class="color-secondary is-uppercase is-size-1-fullhd has-text-centered has-text-left-desktop"> 30: {$page->subtitle} 31: </h2> 32: </div> 33: *} 34: <div class="" data-effect="fadeIn" data-effect-delay="200ms" data-effect-duration="800ms"> 35: {include '../_sections/' . $page->action . '.latte'} 36: </div> 37: </div> 38: </div> 39: </section>
$mod | 'html'
|
---|
243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name", 257: );
$ʟ_args | null
|
---|
302: $block->functions = array_merge($block->functions, $functions); 303: } 304: 305: 306: /** 307: * @param string|\Closure|null $mod content-type name or modifier closure 308: */ 309: private function filter(callable $function, string|\Closure|null $mod, string $contentType, string $name): void 310: { 311: if ($mod === null || $mod === $contentType) { 312: $function(); 313: 314: } elseif ($mod instanceof \Closure) { 315: echo $mod($this->capture($function), $contentType); 316:
242: : ($this->blocks[self::LayerLocal][$name] ?? $this->blocks[self::LayerTop][$name] ?? null); 243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name",
$function | |
---|---|
$mod | 'html'
|
$contentType | 'html'
|
$name | 'block content'
|
540: echo ' is-halfheight-mobile '; 541: } 542: echo ' lines isolate"> 543: '; 544: $this->createTemplate('_elements/logo.latte', $this->params, 'include')->renderToContentType('html') /* line 210 */; 545: $this->createTemplate('_elements/sidebar.latte', $this->params, 'include')->renderToContentType('html') /* line 211 */; 546: echo ' </section> 547: </div> 548: <div class="col2"> 549: '; 550: $this->renderBlock('content', [], 'html') /* line 215 */; 551: if ($section != 'default') /* line 216 */ { 552: echo ' <footer> 553: '; 554: $this->createTemplate('_layout/footer.latte', $this->params, 'include')->renderToContentType('html') /* line 217 */;
205: 206: {*************************************** Subsection start ***************************************} 207: <div class="main-div" data-effect="fadeIn" data-effect-delay="0ms" data-effect-duration="1000ms" n:if="$section != 'default'"> 208: <div class="col1"> 209: <section class="hero is-fullheight {if $section != 'default'} is-halfheight-mobile {*if empty($record)} is-halfheight-mobile {/if*} {/if} lines isolate"> 210: {include '_elements/logo.latte'} 211: {include '_elements/sidebar.latte'} 212: </section> 213: </div> 214: <div class="col2"> 215: {include content} 216: <footer n:if="$section != 'default'"> 217: {include '_layout/footer.latte'} 218: </footer> 219: </div>
$name | 'content'
|
---|---|
$params | array (0)
|
$mod | 'html'
|
243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name", 257: );
$ʟ_args | null
|
---|
302: $block->functions = array_merge($block->functions, $functions); 303: } 304: 305: 306: /** 307: * @param string|\Closure|null $mod content-type name or modifier closure 308: */ 309: private function filter(callable $function, string|\Closure|null $mod, string $contentType, string $name): void 310: { 311: if ($mod === null || $mod === $contentType) { 312: $function(); 313: 314: } elseif ($mod instanceof \Closure) { 315: echo $mod($this->capture($function), $contentType); 316:
242: : ($this->blocks[self::LayerLocal][$name] ?? $this->blocks[self::LayerTop][$name] ?? null); 243: 244: if (!$block) { 245: $hint = $layer && ($t = Latte\Helpers::getSuggestion($this->getBlockNames($layer), $name)) 246: ? ", did you mean '$t'?" 247: : '.'; 248: $name = $layer ? "$layer $name" : $name; 249: throw new Latte\RuntimeException("Cannot include undefined block '$name'$hint"); 250: } 251: 252: $this->filter( 253: fn() => reset($block->functions)($params), 254: $mod, 255: $block->contentType, 256: "block $name",
$function | |
---|---|
$mod | null
|
$contentType | 'html'
|
$name | 'block main'
|
156: } 157: echo "\n"; 158: if (!empty($cfg->appTransition)) /* line 195 */ { 159: echo ' <div id="transition"></div> 160: '; 161: } 162: echo ' 163: <main'; 164: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('main')), '"'; 165: echo '>'; 166: $this->renderBlock('main', [], null, 'snippet') /* line 197 */; 167: echo '</main> 168: 169: <div'; 170: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('cookies')), '"';
187: <div n:snippet="preloader"></div> 188: 189: {include '_elements/preloader.latte'} 190: 191: <script type="application/javascript" src="{plink Homepage:jsMin}{$cfg->cacheKey}{time()}" async defer></script> 192: 193: <span id="circle" class="circle is-hidden-touch" n:if="$cfg->appCursorCircle"></span> 194: 195: <div id="transition" n:if="!empty($cfg->appTransition)"></div> 196: 197: <main n:snippet="main">{* data-naja-snippet-cache="off"*} 198: 199: {include '_elements/skip.latte'} 200: {include $templateRoot . '/_global/toolbar.latte'} 201: {include '_elements/menu.latte'}
$name | 'main'
|
---|---|
$params | array (0)
|
$mod | null
|
$layer | 'snippet'
|
150: } 151: 152: } elseif ($this->parentName) { // extends 153: $this->params = $params; 154: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 155: 156: } elseif ($block !== null) { // single block rendering 157: $this->renderBlock($block, $this->params); 158: 159: } else { 160: $this->main($params); 161: } 162: } 163: 164:
$ʟ_args | null
|
---|
144: 145: Filters::$xml = static::ContentType === Latte\ContentType::Xml; 146: 147: if ($this->referenceType === 'import') { 148: if ($this->parentName) { 149: throw new Latte\RuntimeException('Imported template cannot use {extends} or {layout}, use {import}'); 150: } 151: 152: } elseif ($this->parentName) { // extends 153: $this->params = $params; 154: $this->createTemplate($this->parentName, $params, 'extends')->render($block); 155: 156: } elseif ($block !== null) { // single block rendering 157: $this->renderBlock($block, $this->params); 158:
$block | null
|
---|
57: 58: 59: /** 60: * Renders template to output. 61: * @param object|mixed[] $params 62: */ 63: public function render(string $name, object|array $params = [], ?string $block = null): void 64: { 65: $template = $this->createTemplate($name, $this->processParams($params)); 66: $template->global->coreCaptured = false; 67: $template->render($block); 68: } 69: 70: 71: /**
$block | null
|
---|
36: return $this->latte; 37: } 38: 39: 40: /** 41: * Renders template to output. 42: */ 43: public function render(?string $file = null, array $params = []): void 44: { 45: Nette\Utils\Arrays::toObject($params, $this); 46: $this->latte->render($file ?: $this->file, $this); 47: } 48: 49: 50: /**
$name | '/home/.sites/43/site7075321/web/app/Modules/Front/Presenters/templates/debo/Homepage/default.latte'
|
---|---|
$params |
40: return $this->source; 41: } 42: 43: 44: /** 45: * Sends response to output. 46: */ 47: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse): void 48: { 49: if ($this->source instanceof Nette\Application\UI\Template) { 50: $this->source->render(); 51: 52: } else { 53: echo $this->source; 54: }
161: 162: Arrays::invoke($this->onPresenter, $this, $this->presenter); 163: $response = $this->presenter->run(clone $request); 164: 165: if ($response instanceof Responses\ForwardResponse) { 166: $request = $response->getRequest(); 167: goto process; 168: } 169: 170: Arrays::invoke($this->onResponse, $this, $response); 171: $response->send($this->httpRequest, $this->httpResponse); 172: } 173: 174: 175: public function processException(\Throwable $e): void
$httpRequest | |
---|---|
$httpResponse |
80: } 81: 82: 83: /** 84: * Dispatch a HTTP request to a front controller. 85: */ 86: public function run(): void 87: { 88: try { 89: Arrays::invoke($this->onStartup, $this); 90: $this->processRequest($this->createInitialRequest()); 91: Arrays::invoke($this->onShutdown, $this); 92: 93: } catch (\Throwable $e) { 94: Arrays::invoke($this->onError, $this, $e);
$request |
---|
1: <?php 2: 3: declare(strict_types=1); 4: 5: require __DIR__ . '/vendor/autoload.php'; 6: 7: $configurator = App\Bootstrap::boot(); 8: $container = $configurator->createContainer(); 9: $application = $container->getByType(Nette\Application\Application::class); 10: $application->run(); 11:
Exception
Last muted error
Warning: filemtime(): stat failed for /home/.sites/43/site7075321/web/temp/cache/nette.application/touch
Note: the last muted error may have nothing to do with the thrown exception.
.../site7075321/web/vendor/nette/di/src/DI/DependencyChecker.php:96
86: public static function isExpired( 87: int $version, 88: array $files, 89: array &$phpFiles, 90: array $classes, 91: array $functions, 92: string $hash 93: ): bool 94: { 95: try { 96: $currentFiles = @array_map('filemtime', array_combine($tmp = array_keys($files), $tmp)); // @ - files may not exist 97: $origPhpFiles = $phpFiles; 98: $phpFiles = @array_map('filemtime', array_combine($tmp = array_keys($phpFiles), $tmp)); // @ - files may not exist 99: return $version !== self::Version 100: || $files !== $currentFiles
Nette Application
Requests
Presenter
Environment
CONTEXT_DOCUMENT_ROOT | '/home/.sites/43/site7075321/web'
|
---|---|
CONTEXT_PREFIX | ''
|
DOCUMENT_ROOT | '/home/.sites/43/site7075321/web'
|
GATEWAY_INTERFACE | 'CGI/1.1'
|
GEOIP_ADDR | '3.145.105.116'
|
GEOIP_CONTINENT_CODE | 'NA'
|
GEOIP_COUNTRY_CODE | 'US'
|
GEOIP_COUNTRY_NAME | 'United States'
|
H2PUSH | 'off'
|
H2_PUSH | 'off'
|
H2_PUSHED | ''
|
H2_PUSHED_ON | ''
|
H2_STREAM_ID | ''
|
H2_STREAM_TAG | '000'
|
HTTP2 | 'on'
|
HTTPS | 'on'
|
HTTP_ACCEPT | '*/*'
|
HTTP_ACCEPT_ENCODING | 'gzip, br, zstd, deflate'
|
HTTP_COOKIE | 'tracy-session=6bacc57f96; PHPSESSID=lpaj26jtp81c03nibme09n1l4i'
|
HTTP_HOST | 'deboholding.at'
|
HTTP_USER_AGENT | 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
|
MAGICK_THREAD_LIMIT | '1'
|
PATH | '/bin:/usr/bin'
|
PHPRC | '/home/.sites/43/site7075321'
|
QUERY_STRING | 'cookiesAgree=1'
|
REDIRECT_GEOIP_ADDR | '3.145.105.116'
|
REDIRECT_GEOIP_CONTINENT_CODE | 'NA'
|
REDIRECT_GEOIP_COUNTRY_CODE | 'US'
|
REDIRECT_GEOIP_COUNTRY_NAME | 'United States'
|
REDIRECT_H2PUSH | 'off'
|
REDIRECT_H2_PUSH | 'off'
|
REDIRECT_H2_PUSHED | ''
|
REDIRECT_H2_PUSHED_ON | ''
|
REDIRECT_H2_STREAM_ID | ''
|
REDIRECT_H2_STREAM_TAG | '000'
|
REDIRECT_HTTP2 | 'on'
|
REDIRECT_HTTPS | 'on'
|
REDIRECT_QUERY_STRING | 'cookiesAgree=1'
|
REDIRECT_SCRIPT_URI | 'https://deboholding.at/en/sitemap/'
|
REDIRECT_SCRIPT_URL | '/en/sitemap/'
|
REDIRECT_SSL_TLS_SNI | 'deboholding.at'
|
REDIRECT_STATUS | '200'
|
REDIRECT_UNIQUE_ID | 'Z5maIY9W5B9MxLaYEwbXcAAKjQo'
|
REDIRECT_URL | '/en/sitemap/'
|
REDIRECT_show_auth_dialog | '0'
|
REDIRECT_show_no_dialog | '1'
|
REMOTE_ADDR | '3.145.105.116'
|
REMOTE_PORT | '3723'
|
REQUEST_METHOD | 'GET'
|
REQUEST_SCHEME | 'https'
|
REQUEST_URI | '/en/sitemap/?cookiesAgree=1'
|
SCRIPT_FILENAME | '/home/.sites/43/site7075321/web/index.php'
|
SCRIPT_NAME | '/index.php'
|
SCRIPT_URI | 'https://deboholding.at/en/sitemap/'
|
SCRIPT_URL | '/en/sitemap/'
|
SERVER_ADDR | '81.19.159.70'
|
SERVER_ADMIN | 'admin'
|
SERVER_NAME | 'deboholding.at'
|
SERVER_PORT | '443'
|
SERVER_PROTOCOL | 'HTTP/2.0'
|
SERVER_SIGNATURE | ''
|
SERVER_SOFTWARE | 'Apache'
|
SSL_CIPHER | 'TLS_AES_256_GCM_SHA384'
|
SSL_CIPHER_ALGKEYSIZE | '256'
|
SSL_CIPHER_EXPORT | 'false'
|
SSL_CIPHER_USEKEYSIZE | '256'
|
SSL_CLIENT_VERIFY | 'NONE'
|
SSL_COMPRESS_METHOD | 'NULL'
|
SSL_PROTOCOL | 'TLSv1.3'
|
SSL_SECURE_RENEG | 'true'
|
SSL_SERVER_A_KEY | 'rsaEncryption'
|
SSL_SERVER_A_SIG | 'sha256WithRSAEncryption'
|
SSL_SERVER_I_DN | 'CN=R11,O=Let's Encrypt,C=US'
|
SSL_SERVER_I_DN_C | 'US'
|
SSL_SERVER_I_DN_CN | 'R11'
|
SSL_SERVER_I_DN_O | 'Let's Encrypt'
|
SSL_SERVER_M_SERIAL | '041A9CDB01EFC90E41B3F6AE21E53EECE648'
|
SSL_SERVER_M_VERSION | '3'
|
SSL_SERVER_SAN_DNS_0 | 'deboholding.at'
|
SSL_SERVER_SAN_DNS_1 | 'www.deboholding.at'
|
SSL_SERVER_S_DN | 'CN=www.deboholding.at'
|
SSL_SERVER_S_DN_CN | 'www.deboholding.at'
|
SSL_SERVER_V_END | 'Mar 28 23:58:56 2025 GMT'
|
SSL_SERVER_V_START | 'Dec 28 23:58:57 2024 GMT'
|
SSL_SESSION_ID | 'dce26af684f19b71ee3700f8d83639f4439a0a3dc857029cc256ee283a0634fe'
|
SSL_SESSION_RESUMED | 'Initial'
|
SSL_TLS_SNI | 'deboholding.at'
|
SSL_VERSION_INTERFACE | 'mod_ssl/2.4.37'
|
SSL_VERSION_LIBRARY | 'OpenSSL/1.1.1k'
|
UNIQUE_ID | 'Z5maIY9W5B9MxLaYEwbXcAAKjQo'
|
show_auth_dialog | '0'
|
show_no_dialog | '1'
|
PHP_SELF | '/index.php'
|
REQUEST_TIME_FLOAT | 1738119713.567581
|
REQUEST_TIME | 1738119713
|
__NF | Nette Session |
---|
Nette Session
frontHomeSession | |
---|---|
Nette.Http.UserStorage/ | null
|
bcmath
BCMath support | enabled |
Directive | Local Value | Master Value |
---|---|---|
bcmath.scale | 0 | 0 |
bz2
BZip2 Support | Enabled |
Stream Wrapper support | compress.bzip2:// |
Stream Filter support | bzip2.decompress, bzip2.compress |
BZip2 Version | 1.0.6, 6-Sept-2010 |
calendar
Calendar support | enabled |
cgi-fcgi
Directive | Local Value | Master Value |
---|---|---|
cgi.check_shebang_line | On | On |
cgi.discard_path | Off | Off |
cgi.fix_pathinfo | On | On |
cgi.force_redirect | On | On |
cgi.nph | Off | Off |
cgi.redirect_status_env | no value | no value |
cgi.rfc2616_headers | Off | Off |
fastcgi.logging | On | On |
Core
PHP Version | 8.2.24 |
Directive | Local Value | Master Value |
---|---|---|
allow_url_fopen | On | On |
allow_url_include | Off | Off |
arg_separator.input | & | & |
arg_separator.output | & | & |
auto_append_file | no value | no value |
auto_globals_jit | On | On |
auto_prepend_file | no value | no value |
browscap | no value | no value |
default_charset | UTF-8 | UTF-8 |
default_mimetype | text/html | text/html |
disable_classes | no value | no value |
disable_functions | no value | no value |
display_errors | Off | On |
display_startup_errors | Off | Off |
doc_root | no value | no value |
docref_ext | no value | no value |
docref_root | no value | no value |
enable_dl | Off | Off |
enable_post_data_reading | On | On |
error_append_string | no value | no value |
error_log | /var/log/httpd/php.log | /var/log/httpd/php.log |
error_log_mode | 0644 | 0644 |
error_prepend_string | no value | no value |
error_reporting | 32767 | 0 |
expose_php | Off | Off |
extension_dir | /usr/lib/php/extensions/no-debug-non-zts-20220829 | /usr/lib/php/extensions/no-debug-non-zts-20220829 |
fiber.stack_size | no value | no value |
file_uploads | On | On |
hard_timeout | 2 | 2 |
highlight.comment | #998; font-style: italic | #FF8000 |
highlight.default | #000 | #0000BB |
highlight.html | #06B | #000000 |
highlight.keyword | #D24; font-weight: bold | #007700 |
highlight.string | #080 | #DD0000 |
html_errors | Off | Off |
ignore_repeated_errors | Off | Off |
ignore_repeated_source | Off | Off |
ignore_user_abort | Off | Off |
implicit_flush | Off | Off |
include_path | .:/usr/lib/php://share/php/php:/usr/share/pear:/usr/share/php | .:/usr/lib/php://share/php/php:/usr/share/pear:/usr/share/php |
input_encoding | no value | no value |
internal_encoding | no value | no value |
log_errors | Off | Off |
mail.add_x_header | On | On |
mail.force_extra_parameters | no value | no value |
mail.log | no value | no value |
mail.mixed_lf_and_crlf | Off | Off |
max_execution_time | 120 | 120 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 90 | 90 |
max_input_vars | 3000 | 3000 |
max_multipart_body_parts | -1 | -1 |
memory_limit | 256M | 256M |
open_basedir | /home/.sites/43/site7075321/web:/home/.sites/43/site7075321/tmp:/usr/share/pear:/usr/bin/php_safemode | /home/.sites/43/site7075321/web:/home/.sites/43/site7075321/tmp:/usr/share/pear:/usr/bin/php_safemode |
output_buffering | 4096 | 4096 |
output_encoding | no value | no value |
output_handler | no value | no value |
post_max_size | 128M | 128M |
precision | 14 | 14 |
realpath_cache_size | 4096K | 4096K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | Off | Off |
report_memleaks | On | On |
report_zend_debug | Off | Off |
request_order | GP | GP |
sendmail_from | no value | no value |
sendmail_path | /usr/sbin/sendmail -t -i | /usr/sbin/sendmail -t -i |
serialize_precision | -1 | -1 |
short_open_tag | On | On |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sys_temp_dir | /home/.sites/43/site7075321/tmp | /home/.sites/43/site7075321/tmp |
syslog.facility | LOG_USER | LOG_USER |
syslog.filter | no-ctrl | no-ctrl |
syslog.ident | php | php |
unserialize_callback_func | no value | no value |
upload_max_filesize | 120M | 120M |
upload_tmp_dir | /home/.sites/43/site7075321/tmp | /home/.sites/43/site7075321/tmp |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | no value | no value |
variables_order | GPCS | GPCS |
xmlrpc_error_number | 0 | 0 |
xmlrpc_errors | Off | Off |
zend.assertions | 1 | 1 |
zend.detect_unicode | On | On |
zend.enable_gc | On | On |
zend.exception_ignore_args | Off | Off |
zend.exception_string_param_max_len | 15 | 15 |
zend.multibyte | Off | Off |
zend.script_encoding | no value | no value |
zend.signal_check | Off | Off |
ctype
ctype functions | enabled |
curl
cURL support | enabled |
cURL Information | 7.61.1 |
Age | 4 |
Features | |
AsynchDNS | Yes |
CharConv | No |
Debug | No |
GSS-Negotiate | No |
IDN | Yes |
IPv6 | Yes |
krb4 | No |
Largefile | Yes |
libz | Yes |
NTLM | Yes |
NTLMWB | Yes |
SPNEGO | Yes |
SSL | Yes |
SSPI | No |
TLS-SRP | Yes |
HTTP2 | Yes |
GSSAPI | Yes |
KERBEROS5 | Yes |
UNIX_SOCKETS | Yes |
PSL | Yes |
HTTPS_PROXY | Yes |
MULTI_SSL | No |
BROTLI | Yes |
Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp |
Host | x86_64-redhat-linux-gnu |
SSL Version | OpenSSL/1.1.1k |
ZLib Version | 1.2.11 |
libSSH Version | libssh/0.9.6/openssl/zlib |
Directive | Local Value | Master Value |
---|---|---|
curl.cainfo | no value | no value |
date
date/time support | enabled |
timelib version | 2022.10 |
"Olson" Timezone Database Version | 2024.2 |
Timezone Database | internal |
Default timezone | Europe/Vienna |
Directive | Local Value | Master Value |
---|---|---|
date.default_latitude | 31.7667 | 31.7667 |
date.default_longitude | 35.2333 | 35.2333 |
date.sunrise_zenith | 90.833333 | 90.833333 |
date.sunset_zenith | 90.833333 | 90.833333 |
date.timezone | Europe/Prague | Europe/Vienna |
dom
DOM/XML | enabled |
DOM/XML API Version | 20031129 |
libxml Version | 2.9.7 |
HTML Support | enabled |
XPath Support | enabled |
XPointer Support | enabled |
Schema Support | enabled |
RelaxNG Support | enabled |
exif
EXIF Support | enabled |
Supported EXIF Version | 0220 |
Supported filetypes | JPEG, TIFF |
Multibyte decoding support using mbstring | enabled |
Extended EXIF tag formats | Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson |
Directive | Local Value | Master Value |
---|---|---|
exif.decode_jis_intel | JIS | JIS |
exif.decode_jis_motorola | JIS | JIS |
exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
exif.encode_jis | no value | no value |
exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
fileinfo
fileinfo support | enabled |
libmagic | 540 |
filter
Input Validation and Filtering | enabled |
Directive | Local Value | Master Value |
---|---|---|
filter.default | unsafe_raw | unsafe_raw |
filter.default_flags | no value | no value |
ftp
FTP support | enabled |
FTPS support | enabled |
gd
GD Support | enabled |
GD Version | bundled (2.1.0 compatible) |
FreeType Support | enabled |
FreeType Linkage | with freetype |
FreeType Version | 2.9.1 |
GIF Read Support | enabled |
GIF Create Support | enabled |
JPEG Support | enabled |
libJPEG Version | 6b |
PNG Support | enabled |
libPNG Version | 1.6.34 |
WBMP Support | enabled |
XBM Support | enabled |
WebP Support | enabled |
BMP Support | enabled |
TGA Read Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
gd.jpeg_ignore_warning | On | On |
gettext
GetText Support | enabled |
gmp
gmp support | enabled |
GMP version | 6.1.2 |
hash
hash support | enabled |
Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat murmur3a murmur3c murmur3f xxh32 xxh64 xxh3 xxh128 haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
MHASH support | Enabled |
MHASH API Version | Emulated Support |
iconv
iconv support | enabled |
iconv implementation | glibc |
iconv library version | 2.28 |
Directive | Local Value | Master Value |
---|---|---|
iconv.input_encoding | no value | no value |
iconv.internal_encoding | no value | no value |
iconv.output_encoding | no value | no value |
imagick
imagick module | enabled |
---|---|
imagick module version | 3.7.0 |
imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator, ImagickKernel |
Imagick compiled with ImageMagick version | ImageMagick 6.9.12-80 Q16 x86_64 17733 https://legacy.imagemagick.org |
Imagick using ImageMagick library version | ImageMagick 6.9.13-16 Q16 x86_64 18467 https://legacy.imagemagick.org |
ImageMagick copyright | (C) 1999 ImageMagick Studio LLC |
ImageMagick release date | 2024-09-02 |
ImageMagick number of supported formats: | 247 |
ImageMagick supported formats | 3FR, 3G2, 3GP, AAI, AI, APNG, ART, ARW, AVI, AVS, BGR, BGRA, BGRO, BIE, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CR3, CRW, CUR, CUT, DATA, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FILE, FITS, FLV, FRACTAL, FTP, FTS, G3, G4, GIF, GIF87, GRADIENT, GRAY, GRAYA, GROUP4, GV, H, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, HTTP, HTTPS, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, ISOBRL6, J2C, J2K, JBG, JBIG, JNG, JNX, JP2, JPC, JPE, JPEG, JPG, JPM, JPS, JPT, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAGICK, MAP, MASK, MAT, MATTE, MEF, MIFF, MKV, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, POCKETMOD, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UBRL6, UIL, UYVY, VDA, VICAR, VID, VIDEO, VIFF, VIPS, VST, WBMP, WEBM, WEBP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV |
Directive | Local Value | Master Value |
---|---|---|
imagick.allow_zero_dimension_images | 0 | 0 |
imagick.locale_fix | 0 | 0 |
imagick.progress_monitor | 0 | 0 |
imagick.set_single_thread | 1 | 1 |
imagick.shutdown_sleep_count | 10 | 10 |
imagick.skip_version_check | 0 | 0 |
imap
IMAP c-Client Version | 2007f |
SSL Support | enabled |
Kerberos Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
imap.enable_insecure_rsh | Off | Off |
intl
Internationalization support | enabled |
---|---|
ICU version | 60.3 |
ICU Data version | 60.3 |
ICU TZData version | 2019a |
ICU Unicode version | 10.0 |
Directive | Local Value | Master Value |
---|---|---|
intl.default_locale | no value | no value |
intl.error_level | 0 | 0 |
intl.use_exceptions | Off | Off |
json
json support | enabled |
libxml
libXML support | active |
libXML Compiled Version | 2.9.7 |
libXML Loaded Version | 20907 |
libXML streams | enabled |
mbstring
Multibyte Support | enabled |
Multibyte string engine | libmbfl |
HTTP input encoding translation | disabled |
libmbfl version | 1.3.2 |
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
---|
Multibyte (japanese) regex support | enabled |
Multibyte regex (oniguruma) version | 6.8.2 |
Directive | Local Value | Master Value |
---|---|---|
mbstring.detect_order | no value | no value |
mbstring.encoding_translation | Off | Off |
mbstring.http_input | no value | no value |
mbstring.http_output | no value | no value |
mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
mbstring.internal_encoding | no value | no value |
mbstring.language | neutral | neutral |
mbstring.regex_retry_limit | 1000000 | 1000000 |
mbstring.regex_stack_limit | 100000 | 100000 |
mbstring.strict_detection | Off | Off |
mbstring.substitute_character | no value | no value |
mysqli
MysqlI Support | enabled |
---|---|
Client API library version | mysqlnd 8.2.24 |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | Off | Off |
mysqli.allow_persistent | Off | Off |
mysqli.default_host | no value | no value |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | no value | no value |
mysqli.default_socket | no value | no value |
mysqli.default_user | no value | no value |
mysqli.local_infile_directory | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | 0 | 0 |
mysqli.rollback_on_cached_plink | Off | Off |
mysqlnd
mysqlnd | enabled |
---|---|
Version | mysqlnd 8.2.24 |
Compression | supported |
core SSL | supported |
extended SSL | supported |
Command buffer size | 4096 |
Read buffer size | 32768 |
Read timeout | 86400 |
Collecting statistics | Yes |
Collecting memory statistics | No |
Tracing | n/a |
Loaded plugins | mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_caching_sha2_password,auth_plugin_sha256_password |
API Extensions | mysqli,pdo_mysql |
openssl
OpenSSL support | enabled |
OpenSSL Library Version | OpenSSL 1.1.1k FIPS 25 Mar 2021 |
OpenSSL Header Version | OpenSSL 1.1.1k FIPS 25 Mar 2021 |
Openssl default config | /etc/pki/tls/openssl.cnf |
Directive | Local Value | Master Value |
---|---|---|
openssl.cafile | no value | no value |
openssl.capath | no value | no value |
pcre
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 10.40 2022-04-14 |
PCRE Unicode Version | 14.0.0 |
PCRE JIT Support | enabled |
PCRE JIT Target | x86 64bit (little endian + unaligned) |
Directive | Local Value | Master Value |
---|---|---|
pcre.backtrack_limit | 1000000 | 1000000 |
pcre.jit | On | On |
pcre.recursion_limit | 100000 | 100000 |
PDO
PDO support | enabled |
---|---|
PDO drivers | mysql, sqlite |
pdo_mysql
PDO Driver for MySQL | enabled |
---|---|
Client API version | mysqlnd 8.2.24 |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /tmp/mysql.sock | /tmp/mysql.sock |
pdo_sqlite
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.26.0 |
Phar
Phar: PHP Archive support | enabled |
---|---|
Phar API version | 1.1.1 |
Phar-based phar archives | enabled |
Tar-based phar archives | enabled |
ZIP-based phar archives | enabled |
gzip compression | enabled |
bzip2 compression | enabled |
Native OpenSSL support | enabled |
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
Directive | Local Value | Master Value |
---|---|---|
phar.cache_list | no value | no value |
phar.readonly | On | On |
phar.require_hash | On | On |
posix
POSIX support | enabled |
random
Version | 8.2.24 |
readline
Readline Support | enabled |
---|---|
Readline library | 7.0 |
Directive | Local Value | Master Value |
---|---|---|
cli.pager | no value | no value |
cli.prompt | \b \> | \b \> |
Reflection
Reflection | enabled |
session
Session Support | enabled |
Registered save handlers | files user |
Registered serializer handlers | php_serialize php php_binary |
Directive | Local Value | Master Value |
---|---|---|
session.auto_start | Off | Off |
session.cache_expire | 180 | 180 |
session.cache_limiter | nocache | nocache |
session.cookie_domain | no value | no value |
session.cookie_httponly | On | Off |
session.cookie_lifetime | 1209600 | 0 |
session.cookie_path | / | / |
session.cookie_samesite | Strict | no value |
session.cookie_secure | On | Off |
session.gc_divisor | 1000 | 1000 |
session.gc_maxlifetime | 1209600 | 1440 |
session.gc_probability | 1 | 1 |
session.lazy_write | On | On |
session.name | PHPSESSID | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | /home/.sites/43/site7075321/tmp | /home/.sites/43/site7075321/tmp |
session.serialize_handler | php | php |
session.sid_bits_per_character | 5 | 5 |
session.sid_length | 26 | 26 |
session.upload_progress.cleanup | On | On |
session.upload_progress.enabled | On | On |
session.upload_progress.freq | 1% | 1% |
session.upload_progress.min_freq | 1 | 1 |
session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
session.upload_progress.prefix | upload_progress_ | upload_progress_ |
session.use_cookies | On | On |
session.use_only_cookies | On | On |
session.use_strict_mode | On | Off |
session.use_trans_sid | Off | Off |
SimpleXML
SimpleXML support | enabled |
Schema support | enabled |
soap
Soap Client | enabled |
Soap Server | enabled |
Directive | Local Value | Master Value |
---|---|---|
soap.wsdl_cache | 1 | 1 |
soap.wsdl_cache_dir | /home/.sites/43/site7075321/tmp | /home/.sites/43/site7075321/tmp |
soap.wsdl_cache_enabled | On | On |
soap.wsdl_cache_limit | 5 | 5 |
soap.wsdl_cache_ttl | 86400 | 86400 |
sockets
Sockets Support | enabled |
sodium
sodium support | enabled |
---|---|
libsodium headers version | 1.0.18 |
libsodium library version | 1.0.18 |
SPL
SPL support | enabled |
---|---|
Interfaces | OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
sqlite3
SQLite3 support | enabled |
---|---|
SQLite Library | 3.26.0 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.defensive | On | On |
sqlite3.extension_dir | no value | no value |
standard
Dynamic Library Support | enabled |
Path to sendmail | /usr/sbin/sendmail -t -i |
Directive | Local Value | Master Value |
---|---|---|
assert.active | On | On |
assert.bail | Off | Off |
assert.callback | no value | no value |
assert.exception | On | On |
assert.warning | On | On |
auto_detect_line_endings | Off | Off |
default_socket_timeout | 60 | 60 |
from | no value | no value |
session.trans_sid_hosts | no value | no value |
session.trans_sid_tags | a=href,area=href,frame=src,form= | a=href,area=href,frame=src,form= |
unserialize_max_depth | 4096 | 4096 |
url_rewriter.hosts | no value | no value |
url_rewriter.tags | form= | form= |
user_agent | no value | no value |
tokenizer
Tokenizer Support | enabled |
xml
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.7 |
xmlreader
XMLReader | enabled |
xmlwriter
XMLWriter | enabled |
xsl
XSL | enabled |
libxslt Version | 1.1.32 |
libxslt compiled against libxml Version | 2.9.7 |
EXSLT | enabled |
libexslt Version | 1.1.32 |
zip
Zip | enabled |
Zip version | 1.21.1 |
Libzip version | 1.5.1 |
zlib
ZLib Support | enabled |
---|---|
Stream Wrapper | compress.zlib:// |
Stream Filter | zlib.inflate, zlib.deflate |
Compiled Version | 1.2.11 |
Linked Version | 1.2.11 |
Directive | Local Value | Master Value |
---|---|---|
zlib.output_compression | Off | Off |
zlib.output_compression_level | -1 | -1 |
zlib.output_handler | no value | no value |
Additional Modules
Module Name |
---|
array (1)0 => array (7)| 'name' => 'default output handler' | 'type' => 0 | 'flags' => 20592 | 'level' => 0 | 'chunk_size' => 4096 | 'buffer_size' => 8192 | 'buffer_used' => 1546
HTTP
GET https://deboholding.at/en/sitemap/?cookiesAgree=1
Accept | '*/*'
|
---|---|
Accept-Encoding | 'gzip, br, zstd, deflate'
|
Cookie | 'tracy-session=6bacc57f96; PHPSESSID=lpaj26jtp81c03nibme09n1l4i'
|
Host | 'deboholding.at'
|
User-Agent | 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)'
|
$_GET
cookiesAgree | '1'
|
---|
$_POST
empty
$_COOKIE
tracy-session | '6bacc57f96'
|
---|---|
PHPSESSID | 'lpaj26jtp81c03nibme09n1l4i'
|
Code: 200
Content-Type | 'text/html; charset=utf-8'
|
---|---|
X-Frame-Options | 'SAMEORIGIN'
|
Set-Cookie | 'PHPSESSID=lpaj26jtp81c03nibme09n1l4i; expires=Wed, 12 Feb 2025 03:01:53 GMT; Max-Age=1209600; path=/; secure; HttpOnly; SameSite=Strict'
|
Pragma | 'no-cache'
|
Vary | 'X-Requested-With'
|
Expires | '-1'
|
Cache-Control | 'max-age=31536000'
|
Last-Modified | 'Wed, 29 Jan 2025 03:01:53 GMT'
|
X-Powered-By | 'Tomas Stofik'
|
X-Content-Type-Options | 'nosniff'
|
X-XSS-Protection | '1; mode=block'
|
Access-Control-Allow-Origin | 'X-Requested-With'
|
Content-Security-Policy | 'font-src * 'self' data:; img-src * bulma.io 'self' 'unsafe-inline' 'unsafe-eval' data:;'
|
Referrer-Policy | 'strict-origin-when-cross-origin'
|
Strict-Transport-Security | 'max-age=63072000; includeSubDomains; preload'
|
Permissions-Policy | 'geolocation=(self "https://deboholding.at/"), microphone=()'
|
Set-Cookie | 'cookiesAgreed=TRUE; expires=Fri, 09 May 2025 02:01:53 GMT; Max-Age=8636400; path=/; secure; HttpOnly; SameSite=Lax'
|
Headers have been sent, output started at .../latte/templates-debo-@layout.latte--a7b8ecce74.php:110 source
100: <script'; 101: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('color')), '"'; 102: echo '>'; 103: $this->renderBlock('color', [], null, 'snippet') /* line 49 */; 104: echo '</script> 105: 106: <style'; 107: echo ' id="', htmlspecialchars($this->global->snippetDriver->getHtmlId('styles')), '"'; 108: echo '>'; 109: $this->renderBlock('styles', [], null, 'snippet') /* line 62 */; 110: echo '</style> 111: 112: <style> 113: '; 114: foreach ($records as $mapRecordBg) /* line 158 */ {