Added document view support
This commit is contained in:
@@ -182,7 +182,12 @@ class Document
|
||||
|
||||
/**
|
||||
* @var Doctrine\Common\Collections\ArrayCollection $groups
|
||||
* @ORM\ManyToMany(targetEntity="KekRozsak\FrontBundle\Entity\Group", mappedBy="documents")
|
||||
* @ORM\ManyToMany(targetEntity="KekRozsak\FrontBundle\Entity\Group")
|
||||
* @ORM\JoinTable(name="group_document", joinColumns={
|
||||
* @ORM\JoinColumn(name="document_id", referencedColumnName="id"),
|
||||
* }, inverseJoinColumns={
|
||||
* @ORM\JoinColumn(name="group_id", referencedColumnName="id")
|
||||
* })
|
||||
*/
|
||||
protected $groups;
|
||||
|
||||
|
@@ -6,6 +6,7 @@ use Doctrine\ORM\Mapping as ORM;
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
|
||||
use KekRozsak\SecurityBundle\Entity\User;
|
||||
use KekRozsak\FrontBundle\Entity\Document;
|
||||
|
||||
/**
|
||||
* KekRozsak\FrontBundle\Entity\Group
|
||||
@@ -17,6 +18,7 @@ class Group
|
||||
public function __construct()
|
||||
{
|
||||
$this->members = new ArrayCollection();
|
||||
$this->documents = new ArrayCollection();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -300,4 +302,32 @@ class Group
|
||||
{
|
||||
return $this->open;
|
||||
}
|
||||
|
||||
/**
|
||||
* @var Doctrine\Common\Collections\ArrayCollection $documents
|
||||
* @ORM\ManyToMany(targetEntity="Document")
|
||||
*/
|
||||
protected $documents;
|
||||
|
||||
/**
|
||||
* Add document
|
||||
*
|
||||
* @param KekRozsak\FrontBundle\Entity\Document $document
|
||||
* @return Group
|
||||
*/
|
||||
public function addDocument(\KekRozsak\FrontBundle\Entity\Document $document)
|
||||
{
|
||||
$this->documents[] = $document;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all documents
|
||||
*
|
||||
* @return Doctrine\Common\Collections\ArrayCollection
|
||||
*/
|
||||
public function getDocuments()
|
||||
{
|
||||
return $this->documents;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user