%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,mail,shell_exec,system,proc_open,popen,ini_alter,dl,proc_close,curl_exec,curl_multi_exec,readfile,parse_ini_file,escapeshellarg,escapeshellcmd,show_source,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,mail,php_uname,phpinfo MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/egp/vendor/kartik-v/yii2-bootstrap4-dropdown/ |
Upload File : |
<h1 align="center"> <a href="http://demos.krajee.com" title="Krajee Demos" target="_blank"> <img src="http://kartik-v.github.io/bootstrap-fileinput-samples/samples/krajee-logo-b.png" alt="Krajee Logo"/> </a> <br> yii2-bootstrap4-dropdown <hr> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DTP3NZQ6G2AYU" title="Donate via Paypal" target="_blank"> <img src="http://kartik-v.github.io/bootstrap-fileinput-samples/samples/donate.png" alt="Donate"/> </a> </h1> [](https://packagist.org/packages/kartik-v/yii2-bootstrap4-dropdown) [](https://packagist.org/packages/kartik-v/yii2-bootstrap4-dropdown) [](https://packagist.org/packages/kartik-v/yii2-bootstrap4-dropdown) [](https://packagist.org/packages/kartik-v/yii2-bootstrap4-dropdown) [](https://packagist.org/packages/kartik-v/yii2-bootstrap4-dropdown) [](https://packagist.org/packages/kartik-v/yii2-bootstrap4-dropdown) Enhanced Bootstrap 4 dropdown widget for Yii2 framework with nested submenu support. ## Demo TBD ## Installation The preferred way to install this extension is through [composer](http://getcomposer.org/download/). > NOTE: Check the [composer.json](https://github.com/kartik-v/yii2-bootstrap4-dropdown/blob/master/composer.json) for this extension's requirements and dependencies. Read this [web tip /wiki](http://webtips.krajee.com/setting-composer-minimum-stability-application/) on setting the `minimum-stability` settings for your application's composer.json. Either run ``` $ php composer.phar require kartik-v/yii2-bootstrap4-dropdown "@dev" ``` or add ``` "kartik-v/yii2-bootstrap4-dropdown": "@dev" ``` to the ```require``` section of your `composer.json` file. ## Usage ### Dropdown Menu NavBar ```php use yii\bootstrap4\NavBar; use yii\bootstrap4\Nav; use kartik\bs4dropdown\Dropdown; use yii\helpers\Html; NavBar::begin(['brandLabel' => 'NavBar Test']); echo Nav::widget([ 'items' => [ ['label' => 'Home', 'url' => ['/site/index']], [ 'label' => 'Dropdown', 'items' => [ ['label' => 'Section 1', 'url' => '/'], ['label' => 'Section 2', 'url' => '#'], [ 'label' => 'Section 3', 'items' => [ ['label' => 'Section 3.1', 'url' => '/'], ['label' => 'Section 3.2', 'url' => '#'], [ 'label' => 'Section 3.3', 'items' => [ ['label' => 'Section 3.3.1', 'url' => '/'], ['label' => 'Section 3.3.2', 'url' => '#'], ], ], ], ], ], ], ['label' => 'About', 'url' => ['/site/about']], ], 'dropdownClass' => Dropdown::classname(), // use the custom dropdown 'options' => ['class' => 'navbar-nav mr-auto'], ]); NavBar::end(); <div class="dropdown"> <?php echo Html::button('Dropdown Button', [ 'id' => 'dropdownMenuButton', 'class' => 'btn btn-secondary dropdown-toggle' 'data-toggle' => 'dropdown', 'aria-haspopup' => 'true', 'aria-expanded' => 'false' ]); echo Dropdown::widget([ 'items' => [ ['label' => 'Section 1', 'url' => '/'], ['label' => 'Section 2', 'url' => '#'], [ 'label' => 'Section 3', 'items' => [ ['label' => 'Section 3.1', 'url' => '/'], ['label' => 'Section 3.2', 'url' => '#'], [ 'label' => 'Section 3.3', 'items' => [ ['label' => 'Section 3.3.1', 'url' => '/'], ['label' => 'Section 3.3.2', 'url' => '#'], ], ], ], ], ], 'options' => ['aria-labelledby' => 'dropdownMenuButton'] ]); ?> </div> ``` ### Dropdown Solo Button ```php <?php use \yii\helpers\Html; use kartik\bs4dropdown\Dropdown; ?> <div class="dropdown"> <?php echo Html::button('Dropdown Button', [ 'id' => 'dropdownMenuButton', 'class' => 'btn btn-secondary dropdown-toggle' 'data-toggle' => 'dropdown', 'aria-haspopup' => 'true', 'aria-expanded' => 'false' ]); echo Dropdown::widget([ 'items' => [ ['label' => 'Section 1', 'url' => '/'], ['label' => 'Section 2', 'url' => '#'], [ 'label' => 'Section 3', 'items' => [ ['label' => 'Section 3.1', 'url' => '/'], ['label' => 'Section 3.2', 'url' => '#'], [ 'label' => 'Section 3.3', 'items' => [ ['label' => 'Section 3.3.1', 'url' => '/'], ['label' => 'Section 3.3.2', 'url' => '#'], ], ], ], ], ], 'options' => ['aria-labelledby' => 'dropdownMenuButton'] ]); ?> </div> ``` ### Dropdown Button Alt (using ButtonDropdown) ```php use \yii\helpers\Html; use kartik\bs4dropdown\ButtonDropdown; echo ButtonDropdown::widget([ 'label' => 'Dropdown Button', 'dropdown' => [ 'items' => [ ['label' => 'Section 1', 'url' => '/'], ['label' => 'Section 2', 'url' => '#'], [ 'label' => 'Section 3', 'items' => [ ['label' => 'Section 3.1', 'url' => '/'], ['label' => 'Section 3.2', 'url' => '#'], [ 'label' => 'Section 3.3', 'items' => [ ['label' => 'Section 3.3.1', 'url' => '/'], ['label' => 'Section 3.3.2', 'url' => '#'], ], ], ], ], ], ], 'buttonOptions' => ['class'=>'btn-secondary'] ]); ``` ## License **yii2-bootstrap4-dropdown** is released under the BSD-3-Clause License. See the bundled `LICENSE.md` for details.