Example #1
0
 public function create(Page $page)
 {
     $blog = new BlogModel();
     $em = $this->getLocator()->get('doctrine')->getEntityManager();
     $em->persist($blog);
     $em->flush();
     $page->setModuleId($blog->id);
 }
Example #2
0
 public function create(Page $page)
 {
     $content = new Content();
     $em = $this->getLocator()->get('doctrine')->getEntityManager();
     $em->persist($content);
     $em->flush();
     $page->setModuleId($content->id);
 }