|
|
@ -8,6 +8,7 @@ |
|
|
|
namespace yii\bootstrap; |
|
|
|
namespace yii\bootstrap; |
|
|
|
|
|
|
|
|
|
|
|
use Yii; |
|
|
|
use Yii; |
|
|
|
|
|
|
|
use yii\helpers\ArrayHelper; |
|
|
|
use yii\helpers\Html; |
|
|
|
use yii\helpers\Html; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -33,11 +34,24 @@ use yii\helpers\Html; |
|
|
|
* |
|
|
|
* |
|
|
|
* @see http://getbootstrap.com/components/#navbar |
|
|
|
* @see http://getbootstrap.com/components/#navbar |
|
|
|
* @author Antonio Ramirez <amigo.cobos@gmail.com> |
|
|
|
* @author Antonio Ramirez <amigo.cobos@gmail.com> |
|
|
|
|
|
|
|
* @author Alexander Kochetov <creocoder@gmail.com> |
|
|
|
* @since 2.0 |
|
|
|
* @since 2.0 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
class NavBar extends Widget |
|
|
|
class NavBar extends Widget |
|
|
|
{ |
|
|
|
{ |
|
|
|
/** |
|
|
|
/** |
|
|
|
|
|
|
|
* @var array 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 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $options = []; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var array the HTML attributes for the container tag. The following special options are recognized: |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* - tag: string, defaults to "div", the name of the container tag |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $containerOptions = []; |
|
|
|
|
|
|
|
/** |
|
|
|
* @var string the text of the brand. Note that this is not HTML-encoded. |
|
|
|
* @var string the text of the brand. Note that this is not HTML-encoded. |
|
|
|
* @see http://getbootstrap.com/components/#navbar |
|
|
|
* @see http://getbootstrap.com/components/#navbar |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -56,10 +70,14 @@ class NavBar extends Widget |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $screenReaderToggleText = 'Toggle navigation'; |
|
|
|
public $screenReaderToggleText = 'Toggle navigation'; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var bool whether the navbar content should be included in a `container` div which adds left and right padding. |
|
|
|
* @var bool whether the navbar content should be included in an inner div container which by default |
|
|
|
* Set this to false for a 100% width navbar. |
|
|
|
* adds left and right padding. Set this to false for a 100% width navbar. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public $renderInnerContainer = true; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var array the HTML attributes of the inner container. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $padded = true; |
|
|
|
public $innerContainerOptions = []; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Initializes the widget. |
|
|
|
* Initializes the widget. |
|
|
@ -69,27 +87,37 @@ class NavBar extends Widget |
|
|
|
parent::init(); |
|
|
|
parent::init(); |
|
|
|
$this->clientOptions = false; |
|
|
|
$this->clientOptions = false; |
|
|
|
Html::addCssClass($this->options, 'navbar'); |
|
|
|
Html::addCssClass($this->options, 'navbar'); |
|
|
|
if ($this->options['class'] == 'navbar') { |
|
|
|
if ($this->options['class'] === 'navbar') { |
|
|
|
Html::addCssClass($this->options, 'navbar-default'); |
|
|
|
Html::addCssClass($this->options, 'navbar-default'); |
|
|
|
} |
|
|
|
} |
|
|
|
Html::addCssClass($this->brandOptions, 'navbar-brand'); |
|
|
|
Html::addCssClass($this->brandOptions, 'navbar-brand'); |
|
|
|
if (empty($this->options['role'])) { |
|
|
|
if (empty($this->options['role'])) { |
|
|
|
$this->options['role'] = 'navigation'; |
|
|
|
$this->options['role'] = 'navigation'; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$options = $this->options; |
|
|
|
echo Html::beginTag('nav', $this->options); |
|
|
|
$tag = ArrayHelper::remove($options, 'tag', 'nav'); |
|
|
|
if ($this->padded) { |
|
|
|
echo Html::beginTag($tag, $options); |
|
|
|
echo Html::beginTag('div', ['class' => 'container']); |
|
|
|
if ($this->renderInnerContainer) { |
|
|
|
|
|
|
|
if (!isset($this->innerContainerOptions['class'])) { |
|
|
|
|
|
|
|
Html::addCssClass($this->innerContainerOptions, 'container'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
echo Html::beginTag('div', $this->innerContainerOptions); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
echo Html::beginTag('div', ['class' => 'navbar-header']); |
|
|
|
echo Html::beginTag('div', ['class' => 'navbar-header']); |
|
|
|
|
|
|
|
if (!isset($this->containerOptions['id'])) { |
|
|
|
|
|
|
|
$this->containerOptions['id'] = "{$this->options['id']}-collapse"; |
|
|
|
|
|
|
|
} |
|
|
|
echo $this->renderToggleButton(); |
|
|
|
echo $this->renderToggleButton(); |
|
|
|
if ($this->brandLabel !== null) { |
|
|
|
if ($this->brandLabel !== null) { |
|
|
|
|
|
|
|
Html::addCssClass($this->brandOptions, 'navbar-brand'); |
|
|
|
echo Html::a($this->brandLabel, $this->brandUrl === null ? Yii::$app->homeUrl : $this->brandUrl, $this->brandOptions); |
|
|
|
echo Html::a($this->brandLabel, $this->brandUrl === null ? Yii::$app->homeUrl : $this->brandUrl, $this->brandOptions); |
|
|
|
} |
|
|
|
} |
|
|
|
echo Html::endTag('div'); |
|
|
|
echo Html::endTag('div'); |
|
|
|
|
|
|
|
Html::addCssClass($this->containerOptions, 'collapse'); |
|
|
|
echo Html::beginTag('div', ['class' => "collapse navbar-collapse navbar-{$this->options['id']}-collapse"]); |
|
|
|
Html::addCssClass($this->containerOptions, 'navbar-collapse'); |
|
|
|
|
|
|
|
$options = $this->containerOptions; |
|
|
|
|
|
|
|
$tag = ArrayHelper::remove($options, 'tag', 'div'); |
|
|
|
|
|
|
|
echo Html::beginTag($tag, $options); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -97,12 +125,13 @@ class NavBar extends Widget |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public function run() |
|
|
|
public function run() |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
$tag = ArrayHelper::remove($this->containerOptions, 'tag', 'div'); |
|
|
|
echo Html::endTag('div'); |
|
|
|
echo Html::endTag($tag); |
|
|
|
if ($this->padded) { |
|
|
|
if ($this->renderInnerContainer) { |
|
|
|
echo Html::endTag('div'); |
|
|
|
echo Html::endTag('div'); |
|
|
|
} |
|
|
|
} |
|
|
|
echo Html::endTag('nav'); |
|
|
|
$tag = ArrayHelper::remove($this->options, 'tag', 'nav'); |
|
|
|
|
|
|
|
echo Html::endTag($tag, $this->options); |
|
|
|
BootstrapPluginAsset::register($this->getView()); |
|
|
|
BootstrapPluginAsset::register($this->getView()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -113,11 +142,11 @@ class NavBar extends Widget |
|
|
|
protected function renderToggleButton() |
|
|
|
protected function renderToggleButton() |
|
|
|
{ |
|
|
|
{ |
|
|
|
$bar = Html::tag('span', '', ['class' => 'icon-bar']); |
|
|
|
$bar = Html::tag('span', '', ['class' => 'icon-bar']); |
|
|
|
$screenReader = '<span class="sr-only">'.$this->screenReaderToggleText.'</span>'; |
|
|
|
$screenReader = "<span class=\"sr-only\">{$this->screenReaderToggleText}</span>"; |
|
|
|
return Html::button("{$screenReader}\n{$bar}\n{$bar}\n{$bar}", [ |
|
|
|
return Html::button("{$screenReader}\n{$bar}\n{$bar}\n{$bar}", [ |
|
|
|
'class' => 'navbar-toggle', |
|
|
|
'class' => 'navbar-toggle', |
|
|
|
'data-toggle' => 'collapse', |
|
|
|
'data-toggle' => 'collapse', |
|
|
|
'data-target' => ".navbar-{$this->options['id']}-collapse", |
|
|
|
'data-target' => "#{$this->containerOptions['id']}", |
|
|
|
]); |
|
|
|
]); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|