getLogo(); $cmd = N2Request::getVar("nextendcontroller", "dashboard"); $views = array( N2Html::tag('a', array( 'href' => $this->appType->router->createUrl("dashboard/index"), 'class' => 'n2-h4 n2-uc ' . ($cmd == "dashboard" ? "n2-active" : "") ), n2_('Dashboard')), N2Html::tag('a', array( 'href' => $this->appType->router->createUrl("settings/index"), 'class' => 'n2-h4 n2-uc ' . ($cmd == "settings" ? "n2-active" : "") ), n2_('Settings')), N2Html::tag('a', array( 'href' => $this->appType->router->createUrl("help/index"), 'class' => 'n2-h4 n2-uc ' . ($cmd == "help" ? "n2-active" : "") ), n2_('Help')) ); N2Html::nav(array( 'logoUrl' => $this->appType->router->createUrl("dashboard/index"), 'logoImageUrl' => $logoUrl, 'views' => $views, 'actions' => $this->getFragmentValue('actions') )); ?>
renderFragmentBlock('nextend_content'); ?>