denisok94 / yii2-widgets
--
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- denisok94/helper: >=0.8.0|dev-develop
- denisok94/helper-composer: >=0.0.8
- yiisoft/yii2: ~2.0.14
- yiisoft/yii2-bootstrap4: ~2.0.10
Conflicts
- denisok94/helper: <0.8.0
README
Набор виджетов для yii2 на базе yii\bootstrap4\Widget
Installation
composer require --prefer-dist denisok94/yii2-widgets
# or
php composer.phar require --prefer-dist denisok94/yii2-widgets
Use
NavTabs
use denisok94\yii2\widgets\NavTabs; echo NavTabs::widget(['tabs' => [ '1' => [ 'label' => 'label 1', 'content' => 'content text 1', ], '2' => [ 'label' => 'label 2', 'content' => 'content text 2', ], '3' => [ 'label' => 'label 3', 'content' => 'content 3', 'disabled' => true ], //... ]]) echo NavTabs::widget(['tabs' => [ 'overview' => [ 'label' => 'Обзор', 'content' => $this->render('_overview', [ 'model' => $model, ]) ], 'story' => [ 'label' => 'История', 'content' => $this->render('_story', [ 'model' => $model, ]) ], 'outfit' => [ 'label' => 'Одежда', 'content' => $this->render('_outfit', [ 'model' => $model, ]), 'disabled' => true ], ]]);
Box
use denisok94\yii2\widgets\Box; <?php Box::begin([ 'type' => 'primary', // solid / default / primary / success / warning / danger / info 'title' => 'Box title text', 'footer' => 'Box footer text', // or ~ $this->render('_footer', ['model' => $model]) 'collapse' => true, // show button collapse 'remove' => true, // show button remove ]); ?> <!-- box body ↓ --> <blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <small>Someone famous in <cite title="Source Title">Source Title</cite></small> </blockquote> <?php Box::end(); ?>
BlokFiles
Базовая горизонтальная группировка (тест)
use denisok94\yii2\widgets\BlokFiles; echo BlokFiles::widget([ 'items' => $items, 'options' => [ 'a' => [], // or 'div' => [], 'img' => [], 'span' => []] ]);
options a/img:
$options = [ 'url' => '/app/', 'key' => 'id', // items->id ]; // url + key $options = [ 'url' => '/app/${key}.png', 'key' => 'id', // items->id 'parse' => true, ]; // url/key.png
options span: ['key' => 'id', // items->id]
.
base yii html options add ['options' => []]
.
use denisok94\yii2\widgets\BlokFiles; echo BlokFiles::widget([ 'items' => $items, 'callback' => function ($action, $item, $key) { return $action = 'img' ? 'url1' : 'url2'; }, ]);
location full
use denisok94\yii2\widgets\BlokFiles; echo BlokFiles::widget([ 'items' => $items, 'options' => [ 'a' => [ 'url' => '/app/', 'key' => 'id', // items->id ], 'img' => [ 'url' => '/app/${key}.png', 'key' => 'id', // items->id 'parse' => true, ], 'span' => [ 'key' => 'name', // items->name ], ] ]);