ceefee / yii2-layui
The Layui extension for the Yii framework
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.6
- yiisoft/yii2-bootstrap: ~2.0.0
README
Layui Extension for Yii 2
This is the Layui extension for Yii framework 2.0. It encapsulates Layui components and plugins in terms of Yii widgets, and thus makes using Layui components/plugins in Yii applications extremely easy.
For license information check the LICENSE-file.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist ceefee/yii2-layui
or add
"ceefee/yii2-layui": "~1.0.0"
to the require section of your composer.json
file.
Usage
For example, the following single line of code in a view file would render a Layui Progress plugin:
<?= ceefee\layui\Progress::widget(['percent' => 60, 'label' => 'test']) ?>