theme_domain_nav_ul($options)
domain_nav/domain_nav.module, line 201
Themes the domain list as an unordered list of links.
$options An array of information about each domain.
function theme_domain_nav_ul($options) {
foreach ($options as $key => $value) {
$items[] = l($value['sitename'], $value['path']);
}
return theme('item_list', $items);
}