|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace PiedWeb\CMSBundle\Entity; |
|
4
|
|
|
|
|
5
|
|
|
use Doctrine\Common\Collections\ArrayCollection; |
|
6
|
|
|
use Doctrine\Common\Collections\Collection; |
|
7
|
|
|
use Doctrine\ORM\Mapping as ORM; |
|
8
|
|
|
use PiedWeb\CMSBundle\Entity\MediaInterface as Media; |
|
|
|
|
|
|
9
|
|
|
|
|
10
|
|
|
trait PageImageTrait |
|
11
|
|
|
{ |
|
12
|
|
|
/** |
|
13
|
|
|
* @ORM\ManyToOne(targetEntity="PiedWeb\CMSBundle\Entity\MediaInterface") |
|
14
|
|
|
*/ |
|
15
|
|
|
private $mainImage; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* @var ArrayCollection |
|
19
|
|
|
*/ |
|
20
|
|
|
private $images; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* @ORM\OneToMany(targetEntity="PiedWeb\CMSBundle\Entity\PageHasMedia", mappedBy="page",cascade={"all"}, orphanRemoval=true) |
|
24
|
|
|
* @ORM\OrderBy({"position":"ASC"}) |
|
25
|
|
|
*/ |
|
26
|
|
|
private $pageHasMedias; |
|
27
|
|
|
|
|
28
|
|
|
public function __construct_image() |
|
29
|
|
|
{ |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
public function setPageHasMedias($pageHasMedias) |
|
33
|
|
|
{ |
|
34
|
|
|
$this->pageHasMedias = new ArrayCollection(); |
|
35
|
|
|
foreach ($pageHasMedias as $pageHasMedia) { |
|
36
|
|
|
$this->addPageHasMedia($pageHasMedia); |
|
37
|
|
|
} |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
public function getPageHasMedias() |
|
41
|
|
|
{ |
|
42
|
|
|
return $this->pageHasMedias; |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
public function addPageHasMedia(PageHasMedia $pageHasMedia) |
|
46
|
|
|
{ |
|
47
|
|
|
$pageHasMedia->setPage($this); |
|
|
|
|
|
|
48
|
|
|
$this->pageHasMedias[] = $pageHasMedia; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
public function removePageHasMedia(PageHasMedia $pageHasMedia) |
|
52
|
|
|
{ |
|
53
|
|
|
$this->pageHasMedias->removeElement($pageHasMedia); |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
public function getMainImage(): ?Media |
|
57
|
|
|
{ |
|
58
|
|
|
return $this->mainImage; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
public function setMainImage(?Media $mainImage): self |
|
62
|
|
|
{ |
|
63
|
|
|
// TODO: Déplacer en Assert pour éviter une erreur dégueu ?! |
|
64
|
|
|
if (null === $mainImage->getWidth()) { |
|
|
|
|
|
|
65
|
|
|
throw new \Exception('mainImage must be an Image. Media imported is not an image'); |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
$this->mainImage = $mainImage; |
|
69
|
|
|
|
|
70
|
|
|
return $this; |
|
71
|
|
|
} |
|
72
|
|
|
|
|
73
|
|
|
/** |
|
74
|
|
|
* @return Collection|Image[] |
|
75
|
|
|
*/ |
|
76
|
|
|
public function getImages(): Collection |
|
77
|
|
|
{ |
|
78
|
|
|
if (!$this->images) { |
|
79
|
|
|
$this->images = new ArrayCollection(); |
|
80
|
|
|
foreach ($this->pageHasMedias as $p) { |
|
81
|
|
|
$this->images[] = $p->getMedia(); |
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
return $this->images; |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
public function issetImage() |
|
89
|
|
|
{ |
|
90
|
|
|
if ($this->getImages()->count() > 0) { |
|
91
|
|
|
return true; |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
return false; |
|
95
|
|
|
} |
|
96
|
|
|
} |
|
97
|
|
|
|
Let?s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let?s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: