Download the PHP package constantingd/yii2-treemanager without Composer
On this page you can find all versions of the php package constantingd/yii2-treemanager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download constantingd/yii2-treemanager
More information about constantingd/yii2-treemanager
Files in constantingd/yii2-treemanager
Download constantingd/yii2-treemanager
More information about constantingd/yii2-treemanager
Files in constantingd/yii2-treemanager
Vendor constantingd
Package yii2-treemanager
Short Description Yii2 Tree manager (Category)
License MIT
Package yii2-treemanager
Short Description Yii2 Tree manager (Category)
License MIT
Please rate this library. Is it a good library?
Informations about the package yii2-treemanager
Yii2 Tree Manager Category
Расширение сортируется при помощи перетаскивания мышкой
Установка
Предпочтительным способом установки этого расширения является composer.
Запустить
php composer.phar require --prefer-dist constantingd/yii2-treemanager "*"
или добавить
"constantingd/yii2-treemanager": "*"
в раздел require вашего composer.json
файла.
в конфиге web.php
прописать
'modules' => [
'treemanager' => [
'class' => 'constantingd\treemanager\Module',
'layout' => false,
],
],
Применение
После установки запустить виджет:
$arrModel = app\models\Category::find();
<?= TreeManager::widget([
'modelTree' => $arrModel,
'path' => '/admin/category', //Путь для ссылок редактирования и удаления
]) ?>
Сама модель использует обязательные поля
'id',
'name' - Наименование - varchar,
'parent_id' - Родитель - int (0 - главная или id родителя),
'weight' - Вес(порядок) - int,
All versions of yii2-treemanager with dependencies
PHP Build Version
Package Version
Requires
yiisoft/yii2 Version
~2.0.0
The package constantingd/yii2-treemanager contains the following files
Loading the files please wait ....