You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
480B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository;
  3. use Lc\SovBundle\Doctrine\EntityInterface;
  4. trait TreeRepositoryQueryTrait
  5. {
  6. public function filterIsParent(){
  7. return $this->andWhere('.parent is NULL');
  8. }
  9. public function filterIsChildren(){
  10. return $this->andWhere('.parent is NOT NULL');
  11. }
  12. public function filterByParent(EntityInterface $parent){
  13. return $this->andWhere('.parent = :parent')->setParameter('parent', $parent);
  14. }
  15. }