I'm trying to write a basic plugin for the Symfony based CMS Diem. I'm trying to list of the child pages for the current page, which I have managed to do:
$page = $this->getPage();
$this->subpages = $page->getNode()->getChildren();
However, I'm unsure of the syntax to use in order to filter the child records with conditions. I would actually like to get just the records where the is_active field == 1.
Ben belgelerine baktım ve ben setBaseQuery yöntemini kullanmak gerekiyor sanırım, ama ben gerçekten beni başlamak için bir örnek ile yapabilirdi.
Herkes yardımcı olabilir?
Any advice appreciated. Thanks.