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