bootstrap\Progress renderBar()

renderBar() protected method Generates a bar protected string renderBar ( $percent, $label = '', $options = [] )$percent integer The percentage of the bar $label $options array The HTML attributes of the bar return string The rendering result.

bootstrap\Nav init()

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

validators\IpValidator $normalize

$normalize public property Whether to add the CIDR prefix with the smallest length (32 for IPv4 and 128 for IPv6) to an address without it. Works only when subnet is not false. For example: 10.0.1.5 will normalized to 10.0.1.5/32 2008:db0::1 will be normalized to 2008:db0::1/128 Defaults to false. See also $subnet. public boolean $normalize = false

caching\ZendDataCache setValue()

setValue() protected method Stores a value identified by a key in cache. This is the implementation of the method declared in the parent class. protected boolean setValue ( $key, $value, $duration )$key string The key identifying the value to be cached $value mixed The value to be cached. Most often it's a string. If you have disabled $serializer, it could be something else. $duration integer The number of seconds in which the cached value will expire. 0 means never expire. return b

caching\ZendDataCache addValue()

addValue() protected method Stores a value identified by a key into cache if the cache does not contain this key. This is the implementation of the method declared in the parent class. protected boolean addValue ( $key, $value, $duration )$key string The key identifying the value to be cached $value mixed The value to be cached. Most often it's a string. If you have disabled $serializer, it could be something else. $duration integer The number of seconds in which the cached value wil

debug\TimelineAsset $sourcePath

$sourcePath public property public $sourcePath = '@yii/debug/assets'

bootstrap\ButtonDropdown $options

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

bootstrap\Carousel renderItems()

renderItems() public method Renders carousel items as specified on $items. public string renderItems ( )return string The rendering result

bootstrap\ButtonDropdown $label

$label public property The button label public string $label = 'Button'

base\Application bootstrap()

bootstrap() protected method Initializes extensions and executes bootstrap components. This method is called by init() after the application has been fully configured. If you override this method, make sure you also call the parent implementation. protected void bootstrap ( )