kshatrov/yii2-closure-table-behavior
Composer 安装命令:
composer require kshatrov/yii2-closure-table-behavior
包简介
This extension allows you to get functional for closure table trees.
README 文档
README
Yii2 port of the yii-closure-table-behavior. Extension allows managing trees stored in database via closure-table method.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require valentinek/yii2-closure-table-behavior "*"
or add
"valentinek/yii2-closure-table-behavior": "*"
to the require section of your composer.json file.
Configuring
First you need to configure model as follows:
class Category extends ActiveRecord { public $leaf; public function behaviors() { return [ [ 'class' => ClosureTable::className(), 'tableName' => 'category_tree' ], ]; } public static function find() { return new CategoryQuery(static::className()); } }
Second you need to configure query model as follows:
class CategoryQuery extends ActiveQuery { public function behaviors() { return [ [ 'class' => ClosureTableQuery::className(), 'tableName' => 'category_tree' ], ]; } }
Road map
1. Write documentation
2. Write tests
3. bug fixes
4. EVENT_DELETE
5. DeleteNode method refactoring
6. isAncestor() and isDescendant() methods
统计信息
- 总下载量: 826
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2014-12-16