';
$parents = $pagesParents[NO_PARENT_CHAR];
$html .= '
';
if($this->getDbField('homeLink')) {
$html .= '- '.$Language->get('Home').'
';
}
foreach($parents as $parent)
{
// Print the parent
$html .= '- '.$parent->title().'
';
// Check if the parent hash children
if(isset($pagesParents[$parent->key()]))
{
$children = $pagesParents[$parent->key()];
// Print the children
$html .= '';
}
}
$html .= '
';
$html .= '