示例#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());
 }