コード例 #1
0
ファイル: Product.php プロジェクト: sidczak-tti/shop
 public function getCategorySlug()
 {
     return Shop::slugify($this->getCategory());
 }
コード例 #2
0
ファイル: Category.php プロジェクト: sidczak-tti/shop
 /**
  * @ORM\PrePersist
  */
 public function setSlugValue()
 {
     // Add your code here
     $this->slug = Shop::slugify($this->getTitle());
 }