예제 #1
0
파일: Post.php 프로젝트: sidczak-tti/blog
 /**
  * @ORM\PrePersist
  */
 public function setSlugValue()
 {
     // Add your code here
     $this->slug = Blog::slugify($this->getTitle());
 }
예제 #2
0
파일: Post.php 프로젝트: sidczak-tti/blog
 public function getTitleSlug()
 {
     return Blog::slugify($this->getTitle());
 }