Salut

J'ai essayé d'installer et configurer l'extension Tree de doctrine pour l'utiliser dans les catégories et quand j'ai testé un ajout d'un catégorie ca marche pas.

Avant l'utilisation de l'extension Tree l'ajout et modification et suppression des catégories marchent bien.

Pouvez vous m'aider s'il vous plaît ? Merci d'avance

Voici mon code :

app/config.yml
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
 
# Doctrine Configuration
doctrine:
    dbal:
        driver:   "%database_driver%"
        host:     "%database_host%"
        port:     "%database_port%"
        dbname:   "%database_name%"
        user:     "%database_user%"
        password: "%database_password%"
        charset:  UTF8
        # if using pdo_sqlite as your database driver, add the path in parameters.yml
        # e.g. database_path: "%kernel.root_dir%/data/data.db3"
        # path:     "%database_path%"
 
    orm:
        auto_generate_proxy_classes: "%kernel.debug%"
        auto_mapping: true
 
//................
 
# Stof\DoctrineExtensionBundle configuration
stof_doctrine_extensions:
    orm:
        default:
            sluggable: true
            tree: true
Entity/Category.php
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
 
<?php
 
namespace Project\StoreBundle\Entity;
 
use Doctrine\ORM\Mapping as ORM;
 
 
use Gedmo\Mapping\Annotation as Gedmo;
use Doctrine\Common\Collections\ArrayCollection;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Validator\Constraints as Assert;
 
 
/**
 * Category
 * @Gedmo\Tree(type="nested")
 * @ORM\Table()
 * @ORM\Entity(repositoryClass="Project\StoreBundle\Entity\CategoryRepository")
 * @ORM\HasLifeCycleCallbacks()
 */
class Category
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;
 
    /**
     * @var string
     *
     * @ORM\Column(name="name", type="string", length=255)
     *
     *@Assert\NotBlank(message="Please enter the name of categorie.")
     */
    private $name;
 
    /**
     * @Gedmo\slug(fields={"name"}, unique_base="uniqueBase")
     * @ORM\Column(name="slug",length=255, unique=false)
     */
    private $slug ;
 
    /**
     * @ORM\Column(name="uniqueBase", type="integer")
     */
    private $uniqueBase ;
 
    /**
     * @ORM\Column(name="description", type="text", nullable=true)
     */
    private $description;
 
    /**
     * @ORM\Column(name="metaDescription", type="string", length=255, nullable=true)
     *
     * @Assert\Length(
     *     max=255,
     *     maxMessage="Le champ meta_description est trop long (255 caractères max)."
     *  )
     */
    private $metaDescription;
 
    /**
     * @ORM\Column(name="metaKeywords", type="string", length=255, nullable=true)
     *
     * @Assert\Length(
     *     max=255,
     *     maxMessage="Le champ meta_keyword est trop long (255 caractères max)."
     *  )
     */
    private $metaKeywords;
 
 
    /**
     * @ORM\Column(name="enabled", type="boolean", nullable=false)
     */
    private $enabled;
 
 
    /**
     * @Gedmo\TreeLeft
     * @ORM\Column(name="lft", type="integer")
     */
    private $lft;
 
    /**
     * @Gedmo\TreeLevel
     * @ORM\Column(name="lvl", type="integer")
     */
    private $lvl;
 
    /**
     * @Gedmo\TreeRight
     * @ORM\Column(name="rgt", type="integer")
     */
    private $rgt;
 
    /**
     * @Gedmo\TreeRoot
     * @ORM\Column(name="root", type="integer", nullable=true)
     */
    private $root;
 
    /**
     * @Gedmo\TreeParent
     * @ORM\ManyToOne(targetEntity="Category", inversedBy="children")
     * @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="CASCADE")
     */
    private $parent;
 
    /**
     * @ORM\OneToMany(targetEntity="Category", mappedBy="parent")
     * @ORM\OrderBy({"lft" = "ASC"})
     */
    private $children;
 
    /**
     * @ORM\ManyToOne(targetEntity="Project\StoreBundle\Entity\Store", inversedBy="categories", cascade={"persist"})
     * @ORM\JoinColumn(nullable=false)
     */
    private $store ;
 
 
    /**
     * Constructor
     */
    public function __construct()
    {
        $this->children = new ArrayCollection();
    }
 
 
    /**
     * Get id
     *
     * @return integer
     */
    public function getId()
    {
        return $this->id;
    }
 
    /**
     * Set name
     *
     * @param string $name
     * @return Category
     */
    public function setName($name)
    {
        $this->name = $name;
 
        return $this;
    }
 
    /**
     * Get name
     *
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }
 
    /**
     * Set slug
     *
     * @param string $slug
     * @return Category
     */
    public function setSlug($slug)
    {
        $this->slug = $slug;
 
        return $this;
    }
 
    /**
     * Get slug
     *
     * @return string
     */
    public function getSlug()
    {
        return $this->slug;
    }
 
    /**
     * Set uniqueBase
     *
     * @param integer $uniqueBase
     * @return Category
     */
    public function setUniqueBase($uniqueBase)
    {
        $this->uniqueBase = $uniqueBase;
 
        return $this;
    }
 
    /**
     * Get uniqueBase
     *
     * @return integer
     */
    public function getUniqueBase()
    {
        return $this->uniqueBase;
    }
 
    /**
     * Set description
     *
     * @param string $description
     * @return Category
     */
    public function setDescription($description)
    {
        $this->description = $description;
 
        return $this;
    }
 
    /**
     * Get description
     *
     * @return string
     */
    public function getDescription()
    {
        return $this->description;
    }
 
    /**
     * Set metaDescription
     *
     * @param string $metaDescription
     * @return Category
     */
    public function setMetaDescription($metaDescription)
    {
        $this->metaDescription = $metaDescription;
 
        return $this;
    }
 
    /**
     * Get metaDescription
     *
     * @return string
     */
    public function getMetaDescription()
    {
        return $this->metaDescription;
    }
 
    /**
     * Set metaKeywords
     *
     * @param string $metaKeywords
     * @return Category
     */
    public function setMetaKeywords($metaKeywords)
    {
        $this->metaKeywords = $metaKeywords;
 
        return $this;
    }
 
    /**
     * Get metaKeywords
     *
     * @return string
     */
    public function getMetaKeywords()
    {
        return $this->metaKeywords;
    }
 
    /**
     * Set enabled
     *
     * @param boolean $enabled
     * @return Category
     */
    public function setEnabled($enabled)
    {
        $this->enabled = $enabled;
 
        return $this;
    }
 
    /**
     * Get enabled
     *
     * @return boolean
     */
    public function getEnabled()
    {
        return $this->enabled;
    }
 
    /**
     * Set parent
     *
     * @param \Project\StoreBundle\Entity\Category $parent
     * @return Category
     */
    public function setParent(\Project\StoreBundle\Entity\Category $parent = null)
    {
        $this->parent = $parent;
 
        return $this;
    }
 
    /**
     * Get parent
     *
     * @return \Project\StoreBundle\Entity\Category
     */
    public function getParent()
    {
        return $this->parent;
    }
 
    /**
     * Set lft
     *
     * @param integer $lft
     * @return Category
     */
    public function setLft($lft)
    {
        $this->lft = $lft;
 
        return $this;
    }
 
    /**
     * Get lft
     *
     * @return integer
     */
    public function getLft()
    {
        return $this->lft;
    }
 
    /**
     * Set lvl
     *
     * @param integer $lvl
     * @return Category
     */
    public function setLvl($lvl)
    {
        $this->lvl = $lvl;
 
        return $this;
    }
 
    /**
     * Get lvl
     *
     * @return integer
     */
    public function getLvl()
    {
        return $this->lvl;
    }
 
    /**
     * Set rgt
     *
     * @param integer $rgt
     * @return Category
     */
    public function setRgt($rgt)
    {
        $this->rgt = $rgt;
 
        return $this;
    }
 
    /**
     * Get rgt
     *
     * @return integer
     */
    public function getRgt()
    {
        return $this->rgt;
    }
 
    /**
     * Set root
     *
     * @param integer $root
     * @return Category
     */
    public function setRoot($root)
    {
        $this->root = $root;
 
        return $this;
    }
 
    /**
     * Get root
     *
     * @return integer
     */
    public function getRoot()
    {
        return $this->root;
    }
 
    /**
     * Add children
     *
     * @param \Project\StoreBundle\Entity\Category $children
     * @return Category
     */
    public function addChild(\Project\StoreBundle\Entity\Category $children)
    {
        $this->children[] = $children;
 
        return $this;
    }
 
    /**
     * Remove children
     *
     * @param \Project\StoreBundle\Entity\Category $children
     */
    public function removeChild(\Project\StoreBundle\Entity\Category $children)
    {
        $this->children->removeElement($children);
    }
 
    /**
     * Get children
     *
     * @return \Doctrine\Common\Collections\Collection
     */
    public function getChildren()
    {
        return $this->children;
    }
 
 
    /**
     * Set store
     *
     * @param \Project\StoreBundle\Entity\Store $store
     * @return Category
     */
    public function setStore(\Project\StoreBundle\Entity\Store $store = null)
    {
        $this->store = $store;
 
        return $this;
    }
 
    /**
     * Get store
     *
     * @return \Project\StoreBundle\Entity\Store
     */
    public function getStore()
    {
        return $this->store;
    }
 
}
Entity/CategoryRepository.php
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
 
<?php
 
namespace Project\StoreBundle\Entity;
 
use Doctrine\ORM\EntityRepository;
 
/**
 * CategoryRepository
 *
 * This class was generated by the Doctrine ORM. Add your own custom
 * repository methods below.
 */
class CategoryRepository extends EntityRepository
{
 
    public function getCategories()
    {
        $qb = $this->createQueryBuilder('c')
                   ->where('c.parent is null')
                   ->orderBy('c.root', 'ASC')
                   ->addOrderBy('c.lft', 'ASC');
 
        return $qb ;
    }
 
    public function getIndentedTitle()
    {
        return str_repeat("--", $this->lvl).$this->title;
    }
}
Form/CategoryType.php
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
 
<?php
 
namespace Project\StoreBundle\Form\Type;
 
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Form\FormEvents;
use Symfony\Component\Form\FormEvent;
 
class CategoryType extends AbstractType
{
        /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('name', 'text', array(
             'required' => true,
             'label' => "Nom",
             'attr' => array('class' =>'col-sm-8'),
             ))
            ->add('enabled', 'checkbox', array(
             'required' => false,
             'label' => "Affichée",
             'attr' => array('class' =>'ace ace-switch ace-switch-7', 'checked' => 'checked'),
             ))
            ->add('description', 'textarea', array(
             'required' => false,
             'label' => "Description",
             'attr' => array('class' =>'col-sm-8'),
             ))
            ->add('metaDescription', 'text', array(
             'required' => false,
             'label' => "Meta Description",
             'attr' => array('class' =>'col-sm-8'),
             ))
            ->add('metaKeywords', 'text', array(
             'required' => false,
             'label' => "Meta mots-clés",
             'attr' => array('class' =>'form-control form-field-tags', 'placeholder' =>'Enter tags ...'),
             ))
            ->add('parent', 'entity', array(
            'required' => false,
            'label' => 'Catégorie parente',
            'class' => 'ProjectStoreBundle:Category',
            'attr' => array('class' => 'col-sm-8'),
            'empty_value' => 'Select one category',
            'property' => 'indentedTitle',
            'multiple' => false,
            'expanded' => false ,
            'query_builder' => function (\Project\StoreBundle\Entity\CategoryRepository $r)
                {
                    return $r->getCategories();
                }
            ))
        ;
    }
 
    /**
     * @param OptionsResolverInterface $resolver
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => 'Project\StoreBundle\Entity\Category'
        ));
    }
 
    /**
     * @return string
     */
    public function getName()
    {
        return 'project_storebundle_category';
    }
}