Download the PHP package alex290/yii2-treeselect without Composer
On this page you can find all versions of the php package alex290/yii2-treeselect. 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-treeselect
Select Tree Map - массив из масива с parent_id
Установка
Предпочтительный способ установки этого расширения через composer.
Запустить
php composer.phar require --prefer-dist alex290/yii2-treeselect "*"
или добавить
"alex290/yii2-treeselect": "*"
в секцию require вашего composer.json
файла.
Использование
После установки расширения, просто использовать его в вашем коде:
$map = app\models\Category::find()->indexBy('id')->orderBy('weight')->asArray()->all();
Забираем массив из объекта категории где должно быть обязательное поле parent_id
Подключаем новую модель
$treeSelect = new \alex290\treeselect\TreeSelect();
и например в форме выводим
<?= $form->field($model, 'parent_id')->dropDownList(yii\helpers\ArrayHelper::merge(['0' => 'Основной'], $treeSelect->getTree($map))) ?>
где $treeSelect->getTree($map)
Вызывается простой массив ['id объекта' => 'Название']. А дочерние элементы вслед за главным с префиксом '-'
All versions of yii2-treeselect with dependencies
PHP Build Version
Package Version
Requires
yiisoft/yii2 Version
*
The package alex290/yii2-treeselect contains the following files
Loading the files please wait ....