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
e6be9fd9
Commit
e6be9fd9
authored
Jul 18, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Even better fix for #3443
parent
66751760
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
Dropdown.php
extensions/bootstrap/Dropdown.php
+5
-4
No files found.
extensions/bootstrap/Dropdown.php
View file @
e6be9fd9
...
...
@@ -56,16 +56,17 @@ class Dropdown extends Widget
*/
public
function
run
()
{
echo
$this
->
renderItems
(
$this
->
items
);
echo
$this
->
renderItems
(
$this
->
items
,
$this
->
options
);
}
/**
* Renders menu items.
* @param array $items the menu items to be rendered
* @param array $containerOptions the HTML attributes for the widget container tag
* @return string the rendering result.
* @throws InvalidConfigException if the label option is not specified in one of the items.
*/
protected
function
renderItems
(
$items
)
protected
function
renderItems
(
$items
,
$containerOptions
)
{
$lines
=
[];
foreach
(
$items
as
$i
=>
$item
)
{
...
...
@@ -87,8 +88,8 @@ class Dropdown extends Widget
$linkOptions
[
'tabindex'
]
=
'-1'
;
$content
=
Html
::
a
(
$label
,
ArrayHelper
::
getValue
(
$item
,
'url'
,
'#'
),
$linkOptions
);
if
(
!
empty
(
$item
[
'items'
]))
{
unset
(
$
this
->
o
ptions
[
'id'
]);
$this
->
renderItems
(
$item
[
'items'
]);
unset
(
$
containerO
ptions
[
'id'
]);
$this
->
renderItems
(
$item
[
'items'
]
,
$containerOptions
);
Html
::
addCssClass
(
$options
,
'dropdown-submenu'
);
}
$lines
[]
=
Html
::
tag
(
'li'
,
$content
,
$options
);
...
...
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