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
b1f71cbf
Commit
b1f71cbf
authored
Jun 17, 2014
by
Dmitry Chernikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
`yii\widgets\Breadcrumbs` enhancement. Allow link to have its `ownTemplate`
parent
e2f6840d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
Breadcrumbs.php
framework/widgets/Breadcrumbs.php
+9
-2
No files found.
framework/widgets/Breadcrumbs.php
View file @
b1f71cbf
...
@@ -24,7 +24,13 @@ use yii\helpers\Html;
...
@@ -24,7 +24,13 @@ use yii\helpers\Html;
* ~~~
* ~~~
* // $this is the view object currently being used
* // $this is the view object currently being used
* echo Breadcrumbs::widget([
* echo Breadcrumbs::widget([
* 'itemTemplate' => "<li><i>{link}</i></li>\n", // template for all links
* 'links' => [
* 'links' => [
* [
* 'label' => 'Post Category',
* 'url' => ['post-category/view', 'id' => 10],
* 'ownTemplate' => '<li><b>{link}</b></li>\n', // template for this link only
* ],
* ['label' => 'Sample Post', 'url' => ['post/edit', 'id' => 1]],
* ['label' => 'Sample Post', 'url' => ['post/edit', 'id' => 1]],
* 'Edit',
* 'Edit',
* ],
* ],
...
@@ -76,6 +82,7 @@ class Breadcrumbs extends Widget
...
@@ -76,6 +82,7 @@ class Breadcrumbs extends Widget
* [
* [
* 'label' => 'label of the link', // required
* 'label' => 'label of the link', // required
* 'url' => 'url of the link', // optional, will be processed by Url::to()
* 'url' => 'url of the link', // optional, will be processed by Url::to()
* 'ownTemplate' => 'own template of the current item', // optional, if not set $this->itemTemplate will be used
* ]
* ]
* ~~~
* ~~~
*
*
...
@@ -135,9 +142,9 @@ class Breadcrumbs extends Widget
...
@@ -135,9 +142,9 @@ class Breadcrumbs extends Widget
throw
new
InvalidConfigException
(
'The "label" element is required for each link.'
);
throw
new
InvalidConfigException
(
'The "label" element is required for each link.'
);
}
}
if
(
isset
(
$link
[
'url'
]))
{
if
(
isset
(
$link
[
'url'
]))
{
return
strtr
(
$template
,
[
'{link}'
=>
Html
::
a
(
$label
,
$link
[
'url'
])]);
return
strtr
(
isset
(
$link
[
'ownTemplate'
])
?
$link
[
'ownTemplate'
]
:
$template
,
[
'{link}'
=>
Html
::
a
(
$label
,
$link
[
'url'
])]);
}
else
{
}
else
{
return
strtr
(
$template
,
[
'{link}'
=>
$label
]);
return
strtr
(
isset
(
$link
[
'ownTemplate'
])
?
$link
[
'ownTemplate'
]
:
$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