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
5038c35f
Commit
5038c35f
authored
May 27, 2013
by
Alexander Kochetov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactoring
parent
e84f5649
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
22 deletions
+14
-22
Tabs.php
framework/yii/jui/Tabs.php
+14
-22
No files found.
framework/yii/jui/Tabs.php
View file @
5038c35f
...
...
@@ -42,7 +42,7 @@ use yii\helpers\Html;
* ),
* array(
* 'label' => 'Ajax tab',
* '
ajax
' => array('ajax/content'),
* '
url
' => array('ajax/content'),
* ),
* ),
* 'options' => array(
...
...
@@ -75,19 +75,13 @@ class Tabs extends Widget
/**
* @var array list of tab items. Each item can be an array of the following structure:
*
* ~~~
* array(
* 'label' => 'Tab header label',
* 'content' => 'Tab item content',
* 'ajax' => 'http://www.yiiframework.com', //or array('ajax/action'),
* // the HTML attributes of the item container tag. This will overwrite "itemOptions".
* 'options' => array(),
* // the HTML attributes of the header container tag. This will overwrite "headerOptions".
* 'headerOptions' = array(),
* // @todo comment.
* 'template'
* )
* ~~~
* - label: string, required, specifies the header link label. When [[encodeLabels]] is true, the label
* will be HTML-encoded.
* - content: string, @todo comment
* - url: mixed, @todo comment
* - template: string, optional, @todo comment
* - options: array, optional, @todo comment
* - headerOptions: array, optional, @todo comment
*/
public
$items
=
array
();
/**
...
...
@@ -103,13 +97,11 @@ class Tabs extends Widget
*/
public
$headerOptions
=
array
();
/**
* @var string
* @todo comment.
* @var string @todo comment
*/
public
$linkTemplate
=
'<a href="{url}">{label}</a>'
;
/**
* @var boolean
* @todo comment.
* @var boolean whether the labels for header items should be HTML-encoded.
*/
public
$encodeLabels
=
true
;
...
...
@@ -140,11 +132,11 @@ class Tabs extends Widget
if
(
!
isset
(
$item
[
'label'
]))
{
throw
new
InvalidConfigException
(
"The 'label' option is required."
);
}
if
(
isset
(
$item
[
'
ajax
'
]))
{
$url
=
$item
[
'ajax'
]
;
if
(
isset
(
$item
[
'
url
'
]))
{
$url
=
Html
::
url
(
$item
[
'url'
])
;
}
else
{
if
(
!
isset
(
$item
[
'content'
]))
{
throw
new
InvalidConfigException
(
"The 'content' or '
ajax
' option is required."
);
throw
new
InvalidConfigException
(
"The 'content' or '
url
' option is required."
);
}
$options
=
array_merge
(
$this
->
itemOptions
,
ArrayHelper
::
getValue
(
$item
,
'options'
,
array
()));
$tag
=
ArrayHelper
::
remove
(
$options
,
'tag'
,
'div'
);
...
...
@@ -158,7 +150,7 @@ class Tabs extends Widget
$template
=
ArrayHelper
::
getValue
(
$item
,
'template'
,
$this
->
linkTemplate
);
$headers
[]
=
Html
::
tag
(
'li'
,
strtr
(
$template
,
array
(
'{label}'
=>
$this
->
encodeLabels
?
Html
::
encode
(
$item
[
'label'
])
:
$item
[
'label'
],
'{url}'
=>
Html
::
url
(
$url
)
,
'{url}'
=>
$url
,
)),
$headerOptions
);
}
return
Html
::
tag
(
'ul'
,
implode
(
"
\n
"
,
$headers
))
.
"
\n
"
.
implode
(
"
\n
"
,
$items
);
...
...
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