Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
firepot
/
themes
/
momota
/
lib
/
kubio-themebase
/
src
/
Components
/
InnerHeader
:
Navigation.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Kubio\Theme\Components\InnerHeader; use ColibriWP\Theme\View; use Kubio\Theme\Components\Common\NavigationStyle; use \Kubio\Theme\Components\FrontHeader\Navigation as FrontNavigation; class Navigation extends FrontNavigation { static $settings_prefix = 'header.navigation.'; public static function style() { return NavigationStyle::getInstance( static::getPrefix(), static::selectiveRefreshSelector() ); } public function renderContent( $parameters = array() ) { static::style()->renderContent(); View::partial( 'header', 'navigation', array( 'component' => $this, ) ); } }