Dropdown button - Dynamic change actions for Yii PHP Framework
The preferred way to install this extension is through composer.
Either run
composer require thtmorais/yii2-dropdown "*"
or add
"thtmorais/yii2-dropdown": "*"
to the require section of your composer.json
file.
Once the extension is installed, simply use it in your code by :
<?= Dropdown::widget([
'dropdownToggleClass' => 'btn btn-lg btn-success',
'main' => [
'id' => 'getStartedWithYii',
'href' => 'http://www.yiiframework.com/',
'class' => 'btn btn-lg btn-success',
'text' => 'Get started with Yii'
],
'subordinate' => [
[
'id' => 'yiiDocumentation',
'href' => 'http://www.yiiframework.com/doc/',
'text' => 'Yii Documentation'
],
[
'id' => 'yiiForum',
'href' => 'http://www.yiiframework.com/forum/',
'text' => 'Yii Forum'
],
[
'id' => 'yiiExtensions',
'href' => 'http://www.yiiframework.com/extensions/',
'text' => 'Yii Extensions'
]
],
'options' => [
'id' => 'group-dropdown',
'class' => 'p-1'
]
]) ?>