run:R W Run
4.94 KB
2026-04-08 19:27:40
R W Run
413 By
2026-04-08 19:27:40
R W Run
263 By
2026-04-08 19:27:41
R W Run
1.46 KB
2026-04-08 19:27:39
R W Run
1.57 KB
2026-04-08 19:27:39
R W Run
279 By
2026-04-08 19:27:39
R W Run
2.86 KB
2026-04-08 19:27:39
R W Run
281 By
2026-04-08 19:27:40
R W Run
1.43 KB
2026-04-08 19:27:41
R W Run
45 By
2026-04-08 19:27:38
R W Run
4.16 KB
2026-04-08 19:27:39
R W Run
1.58 KB
2026-04-08 19:27:39
R W Run
1.46 KB
2026-04-08 19:27:38
R W Run
174 By
2026-04-08 19:27:39
R W Run
528 By
2026-04-08 19:27:41
R W Run
4.46 KB
2026-04-08 19:27:40
R W Run
4.96 KB
2026-04-08 19:27:39
R W Run
17 By
2026-04-08 19:27:40
R W Run
5.25 KB
2026-04-08 19:27:40
R W Run
1.64 KB
2026-04-08 19:27:39
R W Run
1.24 KB
2026-04-08 19:27:40
R W Run
error_log
📄navbar.tpl
1{foreach $navbar as $item}
2 <li menuItemName="{$item->getName()}" class="{if $item->hasChildren()}dropdown{/if}{if $item->getClass()} {$item->getClass()}{/if}" id="{$item->getId()}">
3 <a {if $item->hasChildren()}class="dropdown-toggle" data-toggle="dropdown" href="#"{else}href="{$item->getUri()}"{/if}{if $item->getAttribute('target')} target="{$item->getAttribute('target')}"{/if}>
4 {if $item->hasIcon()}<i class="{$item->getIcon()}"></i>&nbsp;{/if}
5 {$item->getLabel()}
6 {if $item->hasBadge()}&nbsp;<span class="badge">{$item->getBadge()}</span>{/if}
7 {if $item->hasChildren()}&nbsp;<b class="caret"></b>{/if}
8 </a>
9 {if $item->hasChildren()}
10 <ul class="dropdown-menu">
11 {foreach $item->getChildren() as $childItem}
12 <li menuItemName="{$childItem->getName()}"{if $childItem->getClass()} class="{$childItem->getClass()}"{/if} id="{$childItem->getId()}">
13 <a href="{$childItem->getUri()}"{if $childItem->getAttribute('target')} target="{$childItem->getAttribute('target')}"{/if}>
14 {if $childItem->hasIcon()}<i class="{$childItem->getIcon()}"></i>&nbsp;{/if}
15 {$childItem->getLabel()}
16 {if $childItem->hasBadge()}&nbsp;<span class="badge">{$childItem->getBadge()}</span>{/if}
17 </a>
18 </li>
19 {/foreach}
20 </ul>
21 {/if}
22 </li>
23{/foreach}
24