You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
490 B
26 lines
490 B
3 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 02.02.2020
|
||
|
*/
|
||
|
|
||
|
namespace core\components\adminlte3\widgets;
|
||
|
|
||
|
use yii\widgets\Breadcrumbs as BaseBreadcrumbs;
|
||
|
|
||
|
class Breadcrumbs extends BaseBreadcrumbs
|
||
|
{
|
||
|
public $tag = 'ol';
|
||
|
|
||
|
public $options = ['class' => 'breadcrumb float-sm-right'];
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public $itemTemplate = "<li class=\"breadcrumb-item\">{link}</li>\n";
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public $activeItemTemplate = "<li class=\"breadcrumb-item active\">{link}</li>\n";
|
||
|
}
|