bootstrap\Collapse init()

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

bootstrap\Carousel renderItems()

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

bootstrap\Carousel renderIndicators()

renderIndicators() public method Renders carousel indicators. public string renderIndicators ( )return string The rendering result

bootstrap\Carousel renderItem()

renderItem() public method Renders a single carousel item public string renderItem ( $item, $index )$item string|array A single item from $items $index integer The item index as the first item should be set to active return string The rendering result throws yii\base\InvalidConfigException if the item is invalid

bootstrap\Carousel renderControls()

renderControls() public method Renders previous and next control buttons. public void renderControls ( )throws yii\base\InvalidConfigException if $controls is invalid.

bootstrap\Carousel init()

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

bootstrap\Carousel $controls

$controls public property The labels for the previous and the next control buttons. If false, it means the previous and the next control buttons should not be displayed. public array|boolean $controls = ['‹', '›']

bootstrap\Carousel $items

$items public property List of slides in the carousel. Each array element represents a single slide with the following structure: [ // required, slide content (HTML), such as an image tag 'content' => '<img src="http://twitter.github.io/bootstrap/assets/img/bootstrap-mdo-sfmoma-01.jpg"/>', // optional, the caption (HTML) of the slide 'caption' => '<h4>This is title</h4><p>This is the caption text</p>', // optional the HTML attributes o

bootstrap\Carousel $showIndicators

$showIndicators public property If false carousel indicators ( tag with anchors to items) should not be displayed. public boolean $showIndicators = true

bootstrap\ButtonGroup run()

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