. * * @file * @ingroup Skins */ namespace Skins\Chameleon\Components\NavbarHorizontal; use Skins\Chameleon\Components\Component; use Skins\Chameleon\Components\NavMenu as GenNavMenu; /** * The NavbarHorizontal\NavMenu class. * * Provides a NavMenu component to be included in a NavbarHorizontal component. * * @author Stephan Gambke * @since 1.6 * @ingroup Skins */ class NavMenu extends Component { /** * @return String */ public function getHtml() { $navMenu = new GenNavMenu( $this->getSkinTemplate(), $this->getDomElement(), $this->getIndent() );; return '\n"; } }