예제 #1
0
파일: Post.php 프로젝트: mykees/blog-bundle
 /**
  * @ORM\PrePersist()
  * @ORM\PreUpdate()
  *
  */
 public function preSave()
 {
     if ($this->getCreatedAt() == null) {
         $this->createdAt = new \DateTime();
     }
     if ($this->getSlug() == null) {
         $this->slug = Urlizer::urlize($this->getName());
     }
 }
예제 #2
0
 /**
  * @ORM\PrePersist()
  * @ORM\PreUpdate()
  *
  */
 public function preSave()
 {
     if ($this->getSlug() == null) {
         $this->slug = Urlizer::urlize($this->getName());
     }
 }