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