for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PiedWeb\CMSBundle\EventListener;
use PiedWeb\CMSBundle\Entity\PageInterface as Page;
class PageListener
{
public function preRemove(Page $page)
if (method_exists($page, 'getChildrenPages') && !$page->getChildrenPages()->isEmpty()) {
foreach ($page->getChildrenPages() as $cPage) {
$cPage->setParentPage(null);
}