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
cc5981e2
Commit
cc5981e2
authored
May 24, 2013
by
Alexander Kochetov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post final ;)
parent
f50e8f6b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
Tabs.php
framework/yii/jui/Tabs.php
+12
-14
No files found.
framework/yii/jui/Tabs.php
View file @
cc5981e2
...
...
@@ -80,14 +80,13 @@ class Tabs extends Widget
{
$headers
=
array
();
foreach
(
$this
->
items
as
$n
=>
$item
)
{
$options
=
ArrayHelper
::
getValue
(
$item
,
'options'
,
array
());
$id
=
isset
(
$options
[
'id'
])
?
$options
[
'id'
]
:
$this
->
options
[
'id'
]
.
'-tab'
.
$n
;
if
(
isset
(
$item
[
'header'
]))
{
$headerOptions
=
ArrayHelper
::
getValue
(
$item
,
'headerOptions'
,
array
());
$headers
[]
=
Html
::
tag
(
'li'
,
Html
::
a
(
$item
[
'header'
],
"#
$id
"
),
$headerOptions
);
}
else
{
if
(
!
isset
(
$item
[
'header'
]))
{
throw
new
InvalidConfigException
(
"The 'header' option is required."
);
}
$options
=
ArrayHelper
::
getValue
(
$item
,
'options'
,
array
());
$id
=
isset
(
$options
[
'id'
])
?
$options
[
'id'
]
:
$this
->
options
[
'id'
]
.
'-tab'
.
$n
;
$headerOptions
=
ArrayHelper
::
getValue
(
$item
,
'headerOptions'
,
array
());
$headers
[]
=
Html
::
tag
(
'li'
,
Html
::
a
(
$item
[
'header'
],
"#
$id
"
),
$headerOptions
);
}
return
Html
::
tag
(
'ul'
,
implode
(
"
\n
"
,
$headers
));
...
...
@@ -102,16 +101,15 @@ class Tabs extends Widget
{
$contents
=
array
();
foreach
(
$this
->
items
as
$n
=>
$item
)
{
$id
=
$this
->
options
[
'id'
]
.
'-tab'
.
$n
;
if
(
isset
(
$item
[
'content'
]))
{
$options
=
ArrayHelper
::
getValue
(
$item
,
'options'
,
array
());
if
(
!
isset
(
$options
[
'id'
]))
{
$options
[
'id'
]
=
$id
;
}
$contents
[]
=
Html
::
tag
(
'div'
,
$item
[
'content'
],
$options
);
}
else
{
if
(
!
isset
(
$item
[
'content'
]))
{
throw
new
InvalidConfigException
(
"The 'content' option is required."
);
}
$id
=
$this
->
options
[
'id'
]
.
'-tab'
.
$n
;
$options
=
ArrayHelper
::
getValue
(
$item
,
'options'
,
array
());
if
(
!
isset
(
$options
[
'id'
]))
{
$options
[
'id'
]
=
$id
;
}
$contents
[]
=
Html
::
tag
(
'div'
,
$item
[
'content'
],
$options
);
}
return
implode
(
"
\n
"
,
$contents
);
...
...
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