Networking\InitCmsBundle\Model\Page::prePersist PHP 메소드

prePersist() 공개 메소드

Hook on to pre-persist action
public prePersist ( )
    public function prePersist()
    {
        $this->createdAt = $this->updatedAt = new \DateTime("now");
        if (!$this->metaTitle) {
            $this->setMetaTitle($this->pageName);
        }
    }
Page