Create Bootstrap5 based Image carousel with thumbnails

Comparing #4 with #5

Revision #5 was created by pravi pravi on Dec 4, 2023, 10:45:15 AM.

formatting

Content

[...]
if ($this->crossfade) {
Html::addCssClass($this->options, ['animation' => 'carousel-fade']);
}
}

/**
 
     * Renders carousel indicators.
 
     * @return string the rendering result
 
     */
 
public function renderIndicators(): string
{
if ($this->showIndicators === false){
return '';
}
$indicators = [];
[...]