Download the PHP package amass/yii2-bootstrap-panel-widget without Composer
On this page you can find all versions of the php package amass/yii2-bootstrap-panel-widget. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package yii2-bootstrap-panel-widget
Yii2 Bootstrap Panel
Yii2 Bootstrap Panel
Installation
The preferred way to install this extension is through composer.
Either run
or add
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?= \amass\panel\Panel::widget([
'title' => true, // show header or false not showing
'headerTitle' => 'title', // Title text can use tag
'content' => '' // some content in body
'footer' => false, // show footer or false not showing
'footerTitle' => 'text', // Title for footer
'type' => true, // get style for panel \amass\panel::TYPE_DEFAULT default
]); ?>
Or can use begin end widget
<?= \amass\panel\Panel::begin([
'title' => true, // show header or false not showing
'headerTitle' => 'title', // Title text can use tag
'content' => '' // some content in body
'footer' => false, // show footer or false not showing
'footerTitle' => 'text', // Title for footer
'type' => true, // get style for panel \amass\panel::TYPE_DEFAULT default
]); ?>
...
...
...
<?= \amass\panel\Panel::end(); ?>
All versions of yii2-bootstrap-panel-widget with dependencies
PHP Build Version
Package Version
The package amass/yii2-bootstrap-panel-widget contains the following files
Loading the files please wait ....