controller->module->id . '/' . $this->controller->id . '/' . $this->controller->action->id;
echo '
';
foreach ($this->items as $group) {
echo '';
foreach ($group['items'] as $item) {
if (is_string($item['active']))
$active = (preg_match($item['active'], $current_route) > 0);
else
$active = $item['active'];
echo
'- ',
CHtml::link(' ' . $item['label'], $item['url']),
'
';
}
}
echo '
';
}
}