array( // Des infos sur l'utilisateur auteur du commentaire * "i" => "IdDuUser", // l'id * "s" => "LeSlugDuUser", // le slug * "n" => "NameDuUser" // le name * ), * "d" => "LaDate", // Date au format Y-m-d H:i:s * "c" => "Comment" // Le commentaire * ), * [...] * ); * * @ORM\Column(type="text", nullable=true) * @var type string */ protected $comments; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set url * * @param string $url */ public function setUrl($url) { $this->url = $url; } /** * Get url * * @return string */ public function getUrl() { return $this->url; } /** * Set name * * @param string $name */ public function setName($name) { $this->name = $name; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set type * * @param string $type */ public function setType($type) { $this->type = $type; } /** * Get type * * @return string */ public function getType() { return $this->type; } public function __construct($url = null) { //$this->tags = new ArrayCollection(); $this->url = $url; } public function __toString() { return $this->name; } /** * Add tags * * @param Tag $tags */ public function addTag(Tag $tags) { $this->tags[] = $tags; } /** * Get tags * * @return Doctrine\Common\Collections\Collection */ public function getTags() { return $this->tags; } public function getTagsIdsJson() { $ids = array(); if (count($this->getTags())) { foreach ($this->getTags() as $tag) { $ids[] = $tag->getId(); } } return json_encode($ids); } public function setTags($tags) { $this->tags = $tags; } /** * Set owner * * @param User $owner */ public function setOwner(User $owner) { $this->owner = $owner; } /** * Get owner * * @return User */ public function getOwner() { return $this->owner; } /** * Add elements_favorites * * @param UsersElementsFavorites $elementsFavorites */ public function addUsersElementsFavorites(UsersElementsFavorites $elementsFavorites) { $this->elements_favorites[] = $elementsFavorites; } /** * Get elements_favorites * * @return Doctrine\Common\Collections\Collection */ public function getElementsFavorites() { return $this->elements_favorites; } /** * Set group * * @param Group $group */ public function setGroup($group) { $this->group = $group; } /** * Get group * * @return Group */ public function getGroup() { return $this->group; } /** * Set embed * * @param string $code */ public function setEmbed($code) { $this->embed = $code; } /** * Get embed * * @return string */ public function getEmbed() { return $this->embed; } /** * Set created * * @param date $created */ public function setCreated($created) { $this->created = $created; } /** * Get created * * @return date */ public function getCreated() { return $this->created; } /** * Set updated * * @param datetime $updated */ public function setUpdated($updated) { $this->updated = $updated; } /** * Get updated * * @return datetime */ public function getUpdated() { return $this->updated; } /** * Set thumbnail url * * @param string $thumbnail_url */ public function setThumbnailUrl($thumbnail_url) { $this->thumbnail_url = $thumbnail_url; } /** * Get thumbnail url * * @return datetime */ public function getThumbnailUrl() { return $this->thumbnail_url; } /** * * @return type array */ public function getComments() { return json_decode($this->comments, true); } /** * * @param array $comments */ public function setComments($comments) { $this->comments = json_encode($comments); } /** * Etablie des relation vers des tags. * (Supprime les anciens tags, au niveau de l'objet seulement) * * @param array $ids */ public function setTagsWithIds(EntityManager $em, $ids) { $this->tags = null; if (count($ids)) { $tags = $em->getRepository('MuzichCoreBundle:Tag')->findByIds($ids)->execute(); // Pour les nouveaux ids restants foreach ($tags as $tag) { $this->addTag($tag); } } } public function getCountFavorite() { return count($this->elements_favorites); } public function setGroupToId() { $this->group = $this->group->getId(); } // public function deleteTag(Tag $tag) // { // $this->tags->removeElement($tag); // } public function hasTag(Tag $tag_t) { foreach ($this->getTags() as $tag) { if ($tag_t->getId() == $tag->getId()) { return true; } } return false; } }