menu_items['featured_urls'];
$current_context = get_context();
echo '
';
foreach ($featured as $info) {
$selected = ($info->value->context == $current_context) ? 'class="selected"' : '';
$title = htmlentities($info->name, ENT_QUOTES, 'UTF-8');
$url = htmlentities($info->value->url, ENT_QUOTES, 'UTF-8');
echo "- $title
";
}
echo '
';