|
|
@ -83,6 +83,29 @@ class m150722_150100_multiple_tree extends Migration |
|
|
|
```php |
|
|
|
```php |
|
|
|
use paulzi\nestedsets\NestedSetsBehavior; |
|
|
|
use paulzi\nestedsets\NestedSetsBehavior; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @property integer $id |
|
|
|
|
|
|
|
* @property integer $lft |
|
|
|
|
|
|
|
* @property integer $rgt |
|
|
|
|
|
|
|
* @property integer $depth |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @method getParents($depth = null) |
|
|
|
|
|
|
|
* @method getParent() |
|
|
|
|
|
|
|
* @method getRoot() |
|
|
|
|
|
|
|
* @method getDescendants($depth = null, $andSelf = false, $backOrder = false) |
|
|
|
|
|
|
|
* @method getChildren() |
|
|
|
|
|
|
|
* @method getLeaves($depth = null) |
|
|
|
|
|
|
|
* @method getPrev() |
|
|
|
|
|
|
|
* @method getNext() |
|
|
|
|
|
|
|
* @method populateTree($depth = null) |
|
|
|
|
|
|
|
* @method isRoot() |
|
|
|
|
|
|
|
* @method isLeaf() |
|
|
|
|
|
|
|
* @method makeRoot() |
|
|
|
|
|
|
|
* @method prependTo($node) |
|
|
|
|
|
|
|
* @method appendTo($node) |
|
|
|
|
|
|
|
* @method deleteWithChildren() |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
class Sample extends \yii\db\ActiveRecord |
|
|
|
class Sample extends \yii\db\ActiveRecord |
|
|
|
{ |
|
|
|
{ |
|
|
|
public function behaviors() { |
|
|
|
public function behaviors() { |
|
|
|