| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/templates/six/includes/ |
Upload File : |
{foreach $sidebar as $item}
<div menuItemName="{$item->getName()}" class="panel panel-sidebar {if $item->getClass()}{$item->getClass()}{else}panel-sidebar{/if}{if $item->getExtra('mobileSelect') and $item->hasChildren()} hidden-sm hidden-xs{/if}"{if $item->getAttribute('id')} id="{$item->getAttribute('id')}"{/if}>
<div class="panel-heading">
<h3 class="panel-title">
{if $item->hasIcon()}<i class="{$item->getIcon()}"></i> {/if}
{$item->getLabel()}
{if $item->hasBadge()} <span class="badge">{$item->getBadge()}</span>{/if}
<i class="fa fa-chevron-up panel-minimise pull-right"></i>
</h3>
</div>
{if $item->hasBodyHtml()}
<div class="panel-body">
{$item->getBodyHtml()}
</div>
{/if}
{if $item->hasChildren()}
<div class="list-group{if $item->getChildrenAttribute('class')} {$item->getChildrenAttribute('class')}{/if}">
{foreach $item->getChildren() as $childItem}
{if $childItem->getUri()}
<a menuItemName="{$childItem->getName()}" href="{$childItem->getUri()}" class="list-group-item{if $childItem->isDisabled()} disabled{/if}{if $childItem->getClass()} {$childItem->getClass()}{/if}{if $childItem->isCurrent()} active{/if}"{if $childItem->getAttribute('dataToggleTab')} data-toggle="tab"{/if}{if $childItem->getAttribute('target')} target="{$childItem->getAttribute('target')}"{/if} id="{$childItem->getId()}">
{if $childItem->hasBadge()}<span class="badge">{$childItem->getBadge()}</span>{/if}
{if $childItem->hasIcon()}<i class="{$childItem->getIcon()}"></i> {/if}
{$childItem->getLabel()}
</a>
{else}
<div menuItemName="{$childItem->getName()}" class="list-group-item{if $childItem->getClass()} {$childItem->getClass()}{/if}" id="{$childItem->getId()}">
{if $childItem->hasBadge()}<span class="badge">{$childItem->getBadge()}</span>{/if}
{if $childItem->hasIcon()}<i class="{$childItem->getIcon()}"></i> {/if}
{$childItem->getLabel()}
</div>
{/if}
{/foreach}
</div>
{/if}
{if $item->hasFooterHtml()}
<div class="panel-footer clearfix">
{$item->getFooterHtml()}
</div>
{/if}
</div>
{if $item->getExtra('mobileSelect') and $item->hasChildren()}
{* Mobile Select only supports dropdown menus *}
<div class="panel hidden-lg hidden-md {if $item->getClass()}{$item->getClass()}{else}panel-default{/if}"{if $item->getAttribute('id')} id="{$item->getAttribute('id')}"{/if}>
<div class="panel-heading">
<h3 class="panel-title">
{if $item->hasIcon()}<i class="{$item->getIcon()}"></i> {/if}
{$item->getLabel()}
{if $item->hasBadge()} <span class="badge">{$item->getBadge()}</span>{/if}
</h3>
</div>
<div class="panel-body">
<form role="form">
<select class="form-control" onchange="selectChangeNavigate(this)">
{foreach $item->getChildren() as $childItem}
<option menuItemName="{$childItem->getName()}" value="{$childItem->getUri()}" class="list-group-item" {if $childItem->isCurrent()}selected="selected"{/if}>
{$childItem->getLabel()}
{if $childItem->hasBadge()}({$childItem->getBadge()}){/if}
</option>
{/foreach}
</select>
</form>
</div>
{if $item->hasFooterHtml()}
<div class="panel-footer">
{$item->getFooterHtml()}
</div>
{/if}
</div>
{/if}
{/foreach}