A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
649 B

<div class="MenuBlockInner">
<ul>
<?php
if($_CONTROL->ShowTitle)
print '<div class="MenuTitle">' . $_CONTROL->Title . '</div>';
if($_CONTROL->MenuItemControllers)
foreach( $_CONTROL->aryMenuItemControllers as $MenuItemController )
{
if($MenuItemController->UseDivs)
$strTag = 'div';
else
$strTag = 'li';
print '<' . $strTag . ' ' . $MenuItemController->GetAttributes() . '>';
print $MenuItemController->GetControlHtml();
print '</' . $strTag . '>';
}
?>
</ul>
<!-- this pulls the div down below the list to make styling possible .. -->
<!-- <div class="spacer"></div> -->
</div>