Commit b1f71cbf by Dmitry Chernikov

`yii\widgets\Breadcrumbs` enhancement. Allow link to have its `ownTemplate`

parent e2f6840d
...@@ -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]);
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment