Bonjour les amis
j'ai une problème avec le prezent doctrine bundle
après l'ajout et la persistance d'un nouvel objet de l'entity chambre je constate que la table chambre_translation qui doit contenir les traductions est toujours vide
il n'insere rien dans la table des traductions je ne sais pas pourquoi ?
voilà les deux entity :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
 
<?php
 
namespace GreenHouse\HomeBundle\Entity;
 
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Gedmo\Mapping\Annotation as Gedmo;
use Prezent\Doctrine\Translatable\Entity\AbstractTranslatable;
use Prezent\Doctrine\Translatable\Annotation as Prezent;
use Doctrine\Common\Collections\ArrayCollection;
 
/**
 * chambre
 *
 * @ORM\Table(name="chambre")
 * @ORM\Entity(repositoryClass="GreenHouse\HomeBundle\Entity\chambreRepository")
 * @ORM\HasLifecycleCallbacks
 */
class chambre extends AbstractTranslatable
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;
 
    /**
     * @var string
     *
     * @ORM\Column(name="img", type="string", length=255)
     */
    private $img;
 
    /**
    * @Assert\File(maxSize="5M")
    */
    private $file;
 
    /**
     * @var string
     *
     * @ORM\Column(name="titre", type="string", length=255)
     */    
    private $titre = "";
 
    /**
     * @var string
     * @ORM\Column(name="description", type="text")
     */
    private $description = "";
 
    /**
     * @var float
     *
     * @ORM\Column(name="prix", type="float")
     */
    private $prix;
 
    /**
     *  @ORM\Column(type="datetime")
    **/
    private $updated;
 
    /**
    * @Prezent\Translations(targetEntity="GreenHouse\HomeBundle\Entity\chambreTranslation")
    */
    protected $translations;
    private $currentTranslation; // Cache current translation. Useful in Doctrine 2.4+
    public function getTranslations() {
        return $this->translations;
    }
 
    public function setTranslations($translations) {
        $this->translations = $translations;
        return $this;
    }
 
        /**
     * @Prezent\CurrentLocale
     */
    protected $currentLocale;
 
    public function __construct() {
        $this->translations = new ArrayCollection();
        $this->setUpdated();
    }
 
    /**
     * @ORM\ManyToOne(targetEntity="propriete", inversedBy="chambres")
     * @ORM\JoinColumn(name="id_propriete", referencedColumnName="id")
     */
    protected $propriete;
 
    public function __toString() {
        return $this->titre;
    }
 
    /**
     * Get id
     *
     * @return integer 
     */
    public function getId()
    {
        return $this->id;
    }
 
    /**
     * Set img
     *
     * @param string $img
     * @return chambre
     */
    public function setImg($img)
    {
        $this->img = $img;
 
        return $this;
    }
 
    /**
     * Get img
     *
     * @return string 
     */
    public function getImg()
    {
        return $this->img;
    }
 
    /**
     * Set propriete
     *
     * @param \GreenHouse\HomeBundle\Entity\propriete $propriete
     * @return chambre
     */
    public function setPropriete(\GreenHouse\HomeBundle\Entity\propriete $propriete = null)
    {
        $this->propriete = $propriete;
 
        return $this;
    }
 
    /**
     * Get propriete
     *
     * @return \GreenHouse\HomeBundle\Entity\propriete 
     */
    public function getPropriete()
    {
        return $this->propriete;
    }
 
    /**
     * @ORM\PrePersist()
     * @ORM\PreUpdate()
     */
    public function preUpload()
    {
        if (null !== $this->file) {
            // faites ce que vous voulez pour générer un nom unique
            $this->img = sha1(uniqid(mt_rand(), true)).'.'.$this->file->guessExtension();
        }
    }
 
    /**
     * @ORM\PostPersist()
     * @ORM\PostUpdate()
     */
    public function upload()
    {
        if (null === $this->file) {
            return;
        }
 
        // s'il y a une erreur lors du déplacement du fichier, une exception
        // va automatiquement être lancée par la méthode move(). Cela va empêcher
        // proprement l'entité d'être persistée dans la base de données si
        //  il y a erreur
        $this->file->move($this->getUploadRootDir(), $this->img);
 
        $this->file = NULL;
    }
 
    /**
     * @ORM\PostRemove()
     */
    public function removeUpload()
    {
        if ($file = $this->getAbsolutePath()) {
            unlink($file);
        }
    }
 
    public function getAbsolutePath()
    {
        return null === $this->img ? null : $this->getUploadRootDir().'/'.$this->img;
    }
 
    public function getWebPath()
    {
        return null === $this->img ? null : $this->getUploadDir().'/'.$this->img;
    }
 
    protected function getUploadRootDir()
    {
        // le chemin absolu du répertoire où les documents uploadés doivent être sauvegardés
        return __DIR__.'/../../../../web/'.$this->getUploadDir();
    }
 
    protected function getUploadDir()
    {
        // on se débarrasse de « __DIR__ » afin de ne pas avoir de problème lorsqu'on affiche
        // le document/image dans la vue.
        $function = new \ReflectionClass(get_class());
        return 'uploads/'.$function->getShortName();
    }
 
 
    /**
     * Set updated
     *
     * @param \DateTime $updated
     * @return chambre
     */
    public function setUpdated($value = null)
    {
        $this->updated = new \DateTime("now");
 
        return $this;
    }
 
    /**
     * Get updated
     *
     * @return \DateTime 
     */
    public function getUpdated()
    {
        return $this->updated;
    }
 
    public function getFile() {
        return $this->file;
    }
 
    public function setFile($value) {
        $this->file = $value;
        return $this;
    }
 
    public function getPrix() {
        return $this->prix;
    }
 
    public function setPrix($prix) {
        $this->prix = $prix;
    }
 
    public function getTitre() {
        return $this->translate()->getTitre();
    }
 
    public function getDescription() {
        return $this->translate()->getDescription();
    }
 
    public function setTitre($titre) {
        $this->translate()->setTitre($titre);
    }
 
    public function setDescription($description) {
        $this->translate()->setDescription($description);
    }
 
     /**
     * Translation helper method
     */
    public function translate($locale = null)
    {
        if (null === $locale) {
            $locale = $this->currentLocale;
        }
 
        if (!$locale) {
            throw new \RuntimeException('No locale has been set and currentLocale is empty');
        }
 
        if ($this->currentTranslation && $this->currentTranslation->getLocale() === $locale) {
            return $this->currentTranslation;
        }
 
        if (!$translation = $this->translations->get($locale)) {
            $translation = new chambreTranslation();;
            $translation->setLocale($locale);
            $this->addTranslation($translation);
        }
 
        $this->currentTranslation = $translation;
        return $translation;
    }
 
}
l'entity de traduction :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 
<?php
 
namespace GreenHouse\HomeBundle\Entity;
 
use Doctrine\ORM\Mapping as ORM;
use Prezent\Doctrine\Translatable\Entity\AbstractTranslation;
use Prezent\Doctrine\Translatable\Annotation as Prezent;
 
 
/**
 * @ORM\Entity
 * @ORM\Table(name="chambre_translation")
 */
 
class chambreTranslation extends AbstractTranslation {
 
    /**
     * @Prezent\Translatable(targetEntity="GreenHouse\HomeBundle\Entity\chambre")
     */
    protected $translatable;
 
    /**
     *
     * @var string 
     * @ORM\Column(type="string")
     */
    public $titre;
 
    /**
     * @var string
     * @ORM\Column(type="text")
     */
    public $description;
 
    public function getTitre() {
        return $this->titre;
    }
 
    public function getDescription() {
        return $this->description;
    }
 
    public function setTitre($titre) {
        $this->titre = $titre;
        return $this;
    }
 
    public function setDescription($description) {
        $this->description = $description;
        return $this;
    }
 
    public static function getTranslationEntityClass()
    {
            return 'GreenHouse\HomeBundle\Entity\chambreTranslation';
    }
 
}
que pensez vous les amis ?