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
440eeea8
Commit
440eeea8
authored
Jan 11, 2015
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #6106: Added ability to specify `encode` for each item of `yii\widgets\Breadcrumbs`
parent
a87179e1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
1 deletion
+32
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Breadcrumbs.php
framework/widgets/Breadcrumbs.php
+16
-1
BreadcrumbsTest.php
tests/unit/framework/widgets/BreadcrumbsTest.php
+15
-0
No files found.
framework/CHANGELOG.md
View file @
440eeea8
...
...
@@ -21,6 +21,7 @@ Yii Framework 2 Change Log
-
Bug #6736: Removed
`Content-Transfer-Encoding`
from the list of default download headers (DaSourcerer)
-
Enh #4502: Added alias support to URL route when calling
`Url::toRoute()`
and
`Url::to()`
(qiangxue, lynicidn)
-
Enh #5194:
`yii\console\controllers\AssetController`
now handles bundle files from external resources properly (klimov-paul)
-
Enh #6106: Added ability to specify
`encode`
for each item of
`yii\widgets\Breadcrumbs`
(samdark)
-
Enh #6247: Logger and error handler are now using slightly less memory (stepanselyuk, samdark)
-
Enh #6398: Added support for specifying dependent component in terms of a configuration array for classes such as
`DbCache`
(qiangxue)
-
Enh #6434: Added
`yii\behaviors\SluggableBehavior::immutable`
to support keeping the generated slug unchanged (trntv)
...
...
framework/widgets/Breadcrumbs.php
View file @
440eeea8
...
...
@@ -101,6 +101,15 @@ class Breadcrumbs extends Widget
* ]
* ```
*
* Since 2.0.2 each individual link can override global [[encodeLabels]] param like the following:
*
* ```php
* [
* 'label' => '<strong>Hello!</strong>',
* 'encode' => false,
* ]
* ```
*
*/
public
$links
=
[];
/**
...
...
@@ -150,8 +159,14 @@ class Breadcrumbs extends Widget
*/
protected
function
renderItem
(
$link
,
$template
)
{
$encodeLabel
=
$this
->
encodeLabels
;
if
(
array_key_exists
(
'encode'
,
$link
))
{
$encodeLabel
=
$link
[
'encode'
];
unset
(
$link
[
'encode'
]);
}
if
(
array_key_exists
(
'label'
,
$link
))
{
$label
=
$
this
->
encodeLabels
?
Html
::
encode
(
$link
[
'label'
])
:
$link
[
'label'
];
$label
=
$
encodeLabel
?
Html
::
encode
(
$link
[
'label'
])
:
$link
[
'label'
];
}
else
{
throw
new
InvalidConfigException
(
'The "label" element is required for each link.'
);
}
...
...
tests/unit/framework/widgets/BreadcrumbsTest.php
View file @
440eeea8
...
...
@@ -106,6 +106,21 @@ class BreadcrumbsTest extends \yiiunit\TestCase
$this
->
assertEquals
(
"<li>My-<br>Test-Label</li>
\n
"
,
$unencodedValue
);
}
public
function
testEncodeOverride
()
{
$link
=
[
'label'
=>
'My-<br>Test-Label'
,
'encode'
=>
false
];
$method
=
$this
->
reflectMethod
();
$result
=
$method
->
invoke
(
$this
->
breadcrumbs
,
$link
,
$this
->
breadcrumbs
->
itemTemplate
);
$this
->
assertEquals
(
"<li>My-<br>Test-Label</li>
\n
"
,
$result
);
//without encodeLabels
$this
->
breadcrumbs
->
encodeLabels
=
false
;
$unencodedValue
=
$method
->
invoke
(
$this
->
breadcrumbs
,
$link
,
$this
->
breadcrumbs
->
itemTemplate
);
$this
->
assertEquals
(
"<li>My-<br>Test-Label</li>
\n
"
,
$unencodedValue
);
}
public
function
testRenderItemWithLabelAndUrl
()
{
$link
=
[
'label'
=>
'My-<br>Test-Label'
,
'url'
=>
'http://localhost/yii2'
];
...
...
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