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
a252622d
Commit
a252622d
authored
Jun 18, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3926 from umneeq/yii-widgets-breadcrumbs-enh
`yii\widgets\Breadcrumbs` enhacement
parents
24257e76
7889d1ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Breadcrumbs.php
framework/widgets/Breadcrumbs.php
+10
-2
No files found.
framework/CHANGELOG.md
View file @
a252622d
...
...
@@ -100,6 +100,7 @@ Yii Framework 2 Change Log
-
Enh: Added param
`hideOnSinglePage`
to
`yii\widgets\LinkPager`
(arturf)
-
Enh: Added support for array attributes in
`in`
validator (creocoder)
-
Enh: Improved
`yii\helpers\Inflector::slug`
to support more cases for Russian, Hebrew and special characters (samdark)
-
Enh #3926:
`yii\widgets\Breadcrumbs::$links`
. Allows individual link to have its own
`template`
(creocoder, umneeq)
-
Chg #2898:
`yii\console\controllers\AssetController`
is now using hashes instead of timestamps (samdark)
-
Chg #2913: RBAC
`DbManager`
is now initialized via migration (samdark)
-
Chg #3036: Upgraded Twitter Bootstrap to 3.1.x (qiangxue)
...
...
framework/widgets/Breadcrumbs.php
View file @
a252622d
...
...
@@ -24,7 +24,13 @@ use yii\helpers\Html;
* ~~~
* // $this is the view object currently being used
* echo Breadcrumbs::widget([
* 'itemTemplate' => "<li><i>{link}</i></li>\n", // template for all links
* 'links' => [
* [
* 'label' => 'Post Category',
* 'url' => ['post-category/view', 'id' => 10],
* 'template' => '<li><b>{link}</b></li>\n', // template for this link only
* ],
* ['label' => 'Sample Post', 'url' => ['post/edit', 'id' => 1]],
* 'Edit',
* ],
...
...
@@ -76,6 +82,7 @@ class Breadcrumbs extends Widget
* [
* 'label' => 'label of the link', // required
* 'url' => 'url of the link', // optional, will be processed by Url::to()
* 'template' => 'own template of the item', // optional, if not set $this->itemTemplate will be used
* ]
* ~~~
*
...
...
@@ -134,10 +141,11 @@ class Breadcrumbs extends Widget
}
else
{
throw
new
InvalidConfigException
(
'The "label" element is required for each link.'
);
}
$issetTemplate
=
isset
(
$link
[
'template'
]);
if
(
isset
(
$link
[
'url'
]))
{
return
strtr
(
$template
,
[
'{link}'
=>
Html
::
a
(
$label
,
$link
[
'url'
])]);
return
strtr
(
$
issetTemplate
?
$link
[
'template'
]
:
$
template
,
[
'{link}'
=>
Html
::
a
(
$label
,
$link
[
'url'
])]);
}
else
{
return
strtr
(
$template
,
[
'{link}'
=>
$label
]);
return
strtr
(
$
issetTemplate
?
$link
[
'template'
]
:
$
template
,
[
'{link}'
=>
$label
]);
}
}
}
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