UserTags.php 1012B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace Muzich\CoreBundle\Document;
  3. use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
  4. use Muzich\CoreBundle\Document\EntityTags;
  5. /**
  6. * @MongoDB\Document
  7. */
  8. class UserTags extends EntityTags
  9. {
  10. /**
  11. * @MongoDB\Hash
  12. */
  13. protected $element_diffusion_tags;
  14. /**
  15. * @MongoDB\Hash
  16. */
  17. protected $element_favorite_tags;
  18. /**
  19. * @MongoDB\Hash
  20. */
  21. protected $element_playlist_tags;
  22. public function getElementDiffusionTags()
  23. {
  24. return $this->element_diffusion_tags;
  25. }
  26. public function setElementDiffusionTags($tags)
  27. {
  28. $this->element_diffusion_tags = $tags;
  29. }
  30. public function getElementFavoriteTags()
  31. {
  32. return $this->element_favorite_tags;
  33. }
  34. public function setElementFavoriteTags($tags)
  35. {
  36. $this->element_favorite_tags = $tags;
  37. }
  38. public function getElementPlaylistTags()
  39. {
  40. return $this->element_playlist_tags;
  41. }
  42. public function setElementPlaylistTags($tags)
  43. {
  44. $this->element_playlist_tags = $tags;
  45. }
  46. }