Ejemplo n.º 1
0
 public function getCategorySlug()
 {
     return Shop::slugify($this->getCategory());
 }
Ejemplo n.º 2
0
 /**
  * @ORM\PrePersist
  */
 public function setSlugValue()
 {
     // Add your code here
     $this->slug = Shop::slugify($this->getTitle());
 }