Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
1c2c7ca2
Commit
1c2c7ca2
authored
Nov 22, 2013
by
Kartik Visweswaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct Nav.php comments/PHP doc to reflect BS3 dropdown support.
Corrected the example and doc to highlight allowed dropdown support in Bootstrap 3.
parent
257c4fcb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
12 deletions
+11
-12
Nav.php
extensions/bootstrap/Nav.php
+11
-12
No files found.
extensions/bootstrap/Nav.php
View file @
1c2c7ca2
...
@@ -13,8 +13,8 @@ use yii\helpers\ArrayHelper;
...
@@ -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;
...
@@ -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 -
Dropdown
B', '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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment