Browse Source

Correct Nav.php comments/PHP doc to reflect BS3 dropdown support.

Corrected the example and doc to highlight allowed dropdown support in Bootstrap 3.
tags/2.0.0-beta
Kartik Visweswaran 11 years ago
parent
commit
1c2c7ca250
  1. 23
      extensions/bootstrap/Nav.php

23
extensions/bootstrap/Nav.php

@ -13,8 +13,8 @@ use yii\helpers\ArrayHelper;
use yii\helpers\Html; use yii\helpers\Html;
/** /**
* Nav renders a nav HTML component. * Nav renders a nav HTML component.
* *
* For example: * For example:
* *
* ```php * ```php
@ -28,24 +28,23 @@ use yii\helpers\Html;
* [ * [
* 'label' => 'Dropdown', * 'label' => 'Dropdown',
* 'items' => [ * 'items' => [
* [ * ['label' => 'Level 1 - Dropdown A', 'url' => '#'],
* 'label' => 'Level 1 -DropdownA',
* 'url' => '#',
* 'items' => [
* ['label' => 'Level 2 -DropdownA', 'url' => '#'],
* ],
* ],
* '<li class="divider"></li>', * '<li class="divider"></li>',
* '<li class="dropdown-header">Dropdown Header</li>', * '<li class="dropdown-header">Dropdown Header</li>',
* ['label' => 'Level 1 -DropdownB', 'url' => '#'], * ['label' => 'Level 1 - Dropdown B', 'url' => '#'],
* ], * ],
* ], * ],
* ], * ],
* ]); * ]);
* ``` * ```
* *
* @see http://twitter.github.io/bootstrap/components.html#nav * Note: Multilevel dropdowns beyond Level 1 are not supported in Bootstrap 3.
*
* @see http://getbootstrap.com/components.html#dropdowns
* @see http://getbootstrap.com/components/#nav
*
* @author Antonio Ramirez <amigo.cobos@gmail.com> * @author Antonio Ramirez <amigo.cobos@gmail.com>
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @since 2.0 * @since 2.0
*/ */
class Nav extends Widget class Nav extends Widget

Loading…
Cancel
Save