1
0
Fork 0
mirror of https://github.com/Oreolek/yii2-nested-sets.git synced 2024-07-08 17:34:24 +03:00
yii2-nested-sets/NestedSetsQueryBehavior.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2014-12-22 00:39:24 +02:00
<?php
/**
* @link https://github.com/creocoder/yii2-nested-sets-behavior
* @copyright Copyright (c) 2015 Alexander Kochetov
2014-12-22 00:39:24 +02:00
* @license http://opensource.org/licenses/BSD-3-Clause
*/
namespace creocoder\nestedsets;
2014-12-22 00:39:24 +02:00
use yii\base\Behavior;
2015-01-03 14:40:03 +02:00
use yii\db\Expression;
2014-12-22 00:39:24 +02:00
/**
* NestedSetsQueryBehavior
2014-12-22 00:39:24 +02:00
*
* @property \yii\db\ActiveQuery $owner
*
2014-12-22 00:39:24 +02:00
* @author Alexander Kochetov <creocoder@gmail.com>
*/
class NestedSetsQueryBehavior extends Behavior
2014-12-22 00:39:24 +02:00
{
/**
* Gets the root nodes.
* @return \yii\db\ActiveQuery the owner
2014-12-22 00:39:24 +02:00
*/
public function roots()
{
2015-01-03 14:40:03 +02:00
$this->owner->andWhere([(new $this->owner->modelClass())->leftAttribute => 1]);
return $this->owner;
}
/**
* Gets the leaf nodes.
* @return \yii\db\ActiveQuery the owner
*/
public function leaf()
{
$model = new $this->owner->modelClass();
$db = $model->getDb();
$this->owner->andWhere(new Expression(
$db->quoteColumnName($model->rightAttribute) . ' - ' . $db->quoteColumnName($model->leftAttribute) . ' = 1'
));
2014-12-22 00:39:24 +02:00
return $this->owner;
}
}