widgets\Breadcrumbs $homeLink

$homeLink public property The first hyperlink in the breadcrumbs (called home link). Please refer to $links on the format of the link. If this property is not set, it will default to a link pointing to yii\web\Application::$homeUrl with the label 'Home'. If this property is false, the home link will not be rendered. public array $homeLink = null

widgets\Breadcrumbs $encodeLabels

$encodeLabels public property Whether to HTML-encode the link labels. public boolean $encodeLabels = true

widgets\Breadcrumbs $activeItemTemplate

$activeItemTemplate public property The template used to render each active item in the breadcrumbs. The token {link} will be replaced with the actual HTML link for each active item. public string $activeItemTemplate = "<li class=\"active\">{link}</li>\n"

widgets\Block run()

run() public method Ends recording a block. This method stops output buffering and saves the rendering result as a named block in the view. public void run ( )

widgets\Block init()

init() public method Starts recording a block. public void init ( )

widgets\Block $renderInPlace

$renderInPlace public property Whether to render the block content in place. Defaults to false, meaning the captured block content will not be displayed. public boolean $renderInPlace = false

widgets\BaseListView run()

run() public method Runs the widget. public void run ( )

widgets\BaseListView renderSummary()

renderSummary() public method Renders the summary text. public void renderSummary ( )

widgets\BaseListView renderSorter()

renderSorter() public method Renders the sorter. public string renderSorter ( )return string The rendering result

widgets\BaseListView renderSection()

renderSection() public method Renders a section of the specified name. If the named section is not supported, false will be returned. public string|boolean renderSection ( $name )$name string The section name, e.g., {summary}, {items}. return string|boolean The rendering result of the section, or false if the named section is not supported.