thtmorais/yii2-dropdown Dropdown button - Dynamic change actions for Yii PHP Framework

Dropdown button - Dynamic change actions for Yii PHP Framework

  1. Installation
  2. Usage
  3. Example being executed

Dropdown button - Dynamic change actions for Yii PHP Framework

Installation

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.

Usage

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'
    ]
]) ?>

Example being executed

dropdown

1 1
1 follower
3 020 downloads
Yii Version: 2.0
License: MIT
Category: User Interface
Developed by: Matheus Morais
Created on: Apr 14, 2021
Last updated: 3 years ago
Packagist Profile
Github Repository

Related Extensions