bootstrap\Progress $percent

$percent public property The amount of progress as a percentage. public integer $percent = 0

bootstrap\Progress $label

$label public property The button label. public string $label = null

bootstrap\Progress $bars

$bars public property A set of bars that are stacked together to form a single progress bar. Each bar is an array of the following structure: [ // required, the amount of progress as a percentage. 'percent' => 30, // optional, the label to be displayed on the bar 'label' => '30%', // optional, array, additional HTML attributes for the bar tag 'options' => [], ] public array $bars = null

bootstrap\Progress $barOptions

$barOptions public property The HTML attributes of the bar. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $barOptions = []

bootstrap\NavBar run()

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

bootstrap\NavBar renderToggleButton()

renderToggleButton() protected method Renders collapsible toggle button. protected string renderToggleButton ( )return string The rendering toggle button.

bootstrap\NavBar init()

init() public method Initializes the widget. public void init ( )

bootstrap\NavBar $screenReaderToggleText

$screenReaderToggleText public property Text to show for screen readers for the button to toggle the navbar. public string $screenReaderToggleText = 'Toggle navigation'

bootstrap\NavBar $renderInnerContainer

$renderInnerContainer public property Whether the navbar content should be included in an inner div container which by default adds left and right padding. Set this to false for a 100% width navbar. public boolean $renderInnerContainer = true

bootstrap\NavBar $options

$options public property The HTML attributes for the widget container tag. The following special options are recognized: tag: string, defaults to "nav", the name of the container tag. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = []