Class yii\bootstrap\NavBar
Inheritance | yii\bootstrap\NavBar » yii\bootstrap\Widget » yii\base\Widget |
---|---|
Uses Traits | yii\bootstrap\BootstrapWidgetTrait |
Available since version | 2.0 |
NavBar renders a navbar HTML component.
Any content enclosed between the \yii\bootstrap\begin() and \yii\bootstrap\end() calls of NavBar is treated as the content of the navbar. You may use widgets such as yii\bootstrap\Nav or \yii\widgets\Menu to build up such content. For example,
use yii\bootstrap\NavBar;
use yii\bootstrap\Nav;
NavBar::begin(['brandLabel' => 'NavBar Test']);
echo Nav::widget([
'items' => [
['label' => 'Home', 'url' => ['/site/index']],
['label' => 'About', 'url' => ['/site/about']],
],
'options' => ['class' => 'navbar-nav'],
]);
NavBar::end();
See also https://getbootstrap.com/docs/3.3/components/#navbar.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$brandImage | string|boolean | Src of the brand image or false if it's not used. | yii\bootstrap\NavBar |
$brandLabel | string|boolean | The text of the brand or false if it's not used. | yii\bootstrap\NavBar |
$brandOptions | array | The HTML attributes of the brand link. | yii\bootstrap\NavBar |
$brandUrl | array|string|boolean | The URL for the brand's hyperlink tag. | yii\bootstrap\NavBar |
$clientEvents | array | The event handlers for the underlying Bootstrap JS plugin. | yii\bootstrap\BootstrapWidgetTrait |
$clientOptions | array | The options for the underlying Bootstrap JS plugin. | yii\bootstrap\BootstrapWidgetTrait |
$containerOptions | array | The HTML attributes for the container tag. | yii\bootstrap\NavBar |
$headerContent | string | HTML content to be added in navbar-header div, for example, mobile search form. | yii\bootstrap\NavBar |
$innerContainerOptions | array | The HTML attributes of the inner container. | yii\bootstrap\NavBar |
$options | array | The HTML attributes for the widget container tag. | yii\bootstrap\NavBar |
$renderInnerContainer | boolean | Whether the navbar content should be included in an inner div container which by default adds left and right padding. | yii\bootstrap\NavBar |
$screenReaderToggleText | string | Text to show for screen readers for the button to toggle the navbar. | yii\bootstrap\NavBar |
Public Methods
Method | Description | Defined By |
---|---|---|
getView() | yii\bootstrap\BootstrapWidgetTrait | |
init() | Initializes the widget. | yii\bootstrap\NavBar |
run() | Renders the widget. | yii\bootstrap\NavBar |
Protected Methods
Method | Description | Defined By |
---|---|---|
registerClientEvents() | Registers JS event handlers that are listed in $clientEvents. | yii\bootstrap\BootstrapWidgetTrait |
registerPlugin() | Registers a specific Bootstrap plugin and the related events | yii\bootstrap\BootstrapWidgetTrait |
renderToggleButton() | Renders collapsible toggle button. | yii\bootstrap\NavBar |
Property Details
Src of the brand image or false if it's not used. Note that this param will override $this->brandLabel
param.
See also https://getbootstrap.com/docs/3.3/components/#navbar.
The text of the brand or false if it's not used. Note that this is not HTML-encoded.
See also https://getbootstrap.com/docs/3.3/components/#navbar.
The HTML attributes of the brand link.
See also \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
The URL for the brand's hyperlink tag. This parameter will be processed by \yii\helpers\Url::to()
and will be used for the "href" attribute of the brand link. Default value is false that means
\yii\web\Application::homeUrl will be used.
You may set it to null
if you want to have no link at all.
The HTML attributes for the container tag. The following special options are recognized:
- tag: string, defaults to "div", the name of the container tag.
See also \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
HTML content to be added in navbar-header div, for example, mobile search form.
The HTML attributes of the inner container.
See also \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
The HTML attributes for the widget container tag. The following special options are recognized:
- tag: string, defaults to "nav", the name of the container tag.
See also \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
Whether the navbar content should be included in an inner div container which by default adds left and right padding. Set this to false for a 100% width navbar.
Text to show for screen readers for the button to toggle the navbar.
Method Details
Initializes the widget.
public void init ( ) |
Renders collapsible toggle button.
protected string renderToggleButton ( ) | ||
return | string | The rendering toggle button. |
---|
Renders the widget.
public void run ( ) |