theme_domain_nav_menus($options)
domain_nav/domain_nav.module, line 214
Themes the domain list as a menu-style group of tabs.
$options An array of information about each domain.
function theme_domain_nav_menus($options) {
foreach ($options as $key => $value) {
($value['active']) ? $active = 'active' : $active = '';
$items[] = array(
'data' => l($value['sitename'], $value['path']),
'class' => $active
);
}
return theme('item_list', $items, NULL, 'ul', array('class' => 'tabs primary'));
}