Hello,

Lorsque j'essaye de créer un objet, je reçois le message suivant
Neither the property "idcours" nor one of the methods "addIdcour()"/"removeIdcour()", "setIdcours()", "idcours()", "__set()" or "__call()" exist and have public access in class "dk\SchoolManagerBundle\Entity\Discipline"
Je cherche et n'arrive pas à comprendre à coté de quoi je serais passé.
Please help

Mon 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
<?php
 
namespace dk\SchoolManagerBundle\Entity;
 
use Doctrine\ORM\Mapping as ORM;
 
/**
 * Discipline
 *
 * @ORM\Table(name="discipline")
 * @ORM\Entity
 */
class Discipline
{
    /**
     * @var integer
     *
     * @ORM\Column(name="IDDISCIPLINE", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;
 
    /**
     * @var string
     *
     * @ORM\Column(name="NOMDISCIPLINE", type="string", length=30, nullable=false)
     */
    private $nomdiscipline;
 
    /**
     * @var \Doctrine\Common\Collections\Collection
     *
     * @ORM\ManyToMany(targetEntity="Cours", inversedBy="iddiscipline", cascade={"persist", "merge"})
     * @ORM\JoinTable(name="disciplinecours",
     *   joinColumns={
     *     @ORM\JoinColumn(name="IDDISCIPLINE", referencedColumnName="IDDISCIPLINE")
     *   },
     *   inverseJoinColumns={
     *     @ORM\JoinColumn(name="IDCOURS", referencedColumnName="IDCOURS")
     *   }
     * )
     */
    private $idcours;
 
    /**
     * Constructor
     */
    public function __construct()
    {
        $this->idcours = new \Doctrine\Common\Collections\ArrayCollection();
    }
 
 
    /**
     * Get id
     *
     * @return integer 
     */
    public function getId()
    {
        return $this->id;
    }
 
    /**
     * Set nomdiscipline
     *
     * @param string $nomdiscipline
     * @return Discipline
     */
    public function setNomdiscipline($nomdiscipline)
    {
        $this->nomdiscipline = $nomdiscipline;
 
        return $this;
    }
 
    /**
     * Get nomdiscipline
     *
     * @return string 
     */
    public function getNomdiscipline()
    {
        return $this->nomdiscipline;
    }
 
    /**
     * Add idcours
     *
     * @param \dk\SchoolManagerBundle\Entity\Cours $idcours
     * @return Discipline
     */
    public function addIdcour(\dk\SchoolManagerBundle\Entity\Cours $idcours)
    {
        $this->idcours[] = $idcours;
 
        return $this;
    }
 
    /**
     * Remove idcours
     *
     * @param \dk\SchoolManagerBundle\Entity\Cours $idcours
     */
    public function removeIdcour(\dk\SchoolManagerBundle\Entity\Cours $idcours)
    {
        $this->idcours->removeElement($idcours);
    }
 
    /**
     * Get idcours
     *
     * @return \Doctrine\Common\Collections\Collection 
     */
    public function getIdcours()
    {
        return $this->idcours;
    }
 
    public function __toString()
    {
        return $this->nomdiscipline;
    }
}
Mon Form:
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
<?php
 
namespace dk\SchoolManagerBundle\Form;
 
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
 
class DisciplineType extends AbstractType
{
        /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('nomdiscipline')
            ->add('idcours', 'entity', array (
                'class'=>'dkSchoolManagerBundle:Cours')
                 )
        ;
    }
 
    /**
     * @param OptionsResolverInterface $resolver
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => 'dk\SchoolManagerBundle\Entity\Discipline'
        ));
    }
 
    /**
     * @return string
     */
    public function getName()
    {
        return 'dk_schoolmanagerbundle_discipline';
    }
}
Mon Controller:
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
<?php
 
namespace dk\SchoolManagerBundle\Controller;
 
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use dk\SchoolManagerBundle\Entity\Discipline;
use dk\SchoolManagerBundle\Form\DisciplineType;
 
/**
 * Discipline controller.
 *
 * @Route("/discipline")
 */
class DisciplineController extends Controller
{
 
    /**
     * Lists all Discipline entities.
     *
     * @Route("/", name="discipline")
     * @Method("GET")
     * @Template()
     */
    public function indexAction()
    {
        $em = $this->getDoctrine()->getManager();
 
        $entities = $em->getRepository('dkSchoolManagerBundle:Discipline')->findAll();
 
        return array(
            'entities' => $entities,
        );
    }
    /**
     * Creates a new Discipline entity.
     *
     * @Route("/", name="discipline_create")
     * @Method("POST")
     * @Template("dkSchoolManagerBundle:Discipline:new.html.twig")
     */
    public function createAction(Request $request)
    {
        $entity = new Discipline();
        $form = $this->createCreateForm($entity);
        $form->handleRequest($request);
 
        if ($form->isValid()) {
            $em = $this->getDoctrine()->getManager();
            $em->persist($entity);
            $em->flush();
 
            return $this->redirect($this->generateUrl('discipline_show', array('id' => $entity->getId())));
        }
 
        return array(
            'entity' => $entity,
            'form'   => $form->createView(),
        );
    }
 
    /**
    * Creates a form to create a Discipline entity.
    *
    * @param Discipline $entity The entity
    *
    * @return \Symfony\Component\Form\Form The form
    */
    private function createCreateForm(Discipline $entity)
    {
        $form = $this->createForm(new DisciplineType(), $entity, array(
            'action' => $this->generateUrl('discipline_create'),
            'method' => 'POST',
        ));
 
        $form->add('submit', 'submit', array('label' => 'Create'));
 
        return $form;
    }
 
    /**
     * Displays a form to create a new Discipline entity.
     *
     * @Route("/new", name="discipline_new")
     * @Method("GET")
     * @Template()
     */
    public function newAction()
    {
        $entity = new Discipline();
        $form   = $this->createCreateForm($entity);
 
        return array(
            'entity' => $entity,
            'form'   => $form->createView(),
        );
    }
 
    /**
     * Finds and displays a Discipline entity.
     *
     * @Route("/{id}", name="discipline_show")
     * @Method("GET")
     * @Template()
     */
    public function showAction($id)
    {
        $em = $this->getDoctrine()->getManager();
 
        $entity = $em->getRepository('dkSchoolManagerBundle:Discipline')->find($id);
 
        if (!$entity) {
            throw $this->createNotFoundException('Unable to find Discipline entity.');
        }
 
        $deleteForm = $this->createDeleteForm($id);
 
        return array(
            'entity'      => $entity,
            'delete_form' => $deleteForm->createView(),
        );
    }
 
    /**
     * Displays a form to edit an existing Discipline entity.
     *
     * @Route("/{id}/edit", name="discipline_edit")
     * @Method("GET")
     * @Template()
     */
    public function editAction($id)
    {
        $em = $this->getDoctrine()->getManager();
 
        $entity = $em->getRepository('dkSchoolManagerBundle:Discipline')->find($id);
 
        if (!$entity) {
            throw $this->createNotFoundException('Unable to find Discipline entity.');
        }
 
        $editForm = $this->createEditForm($entity);
        $deleteForm = $this->createDeleteForm($id);
 
        return array(
            'entity'      => $entity,
            'edit_form'   => $editForm->createView(),
            'delete_form' => $deleteForm->createView(),
        );
    }
 
    /**
    * Creates a form to edit a Discipline entity.
    *
    * @param Discipline $entity The entity
    *
    * @return \Symfony\Component\Form\Form The form
    */
    private function createEditForm(Discipline $entity)
    {
        $form = $this->createForm(new DisciplineType(), $entity, array(
            'action' => $this->generateUrl('discipline_update', array('id' => $entity->getId())),
            'method' => 'PUT',
        ));
 
        $form->add('submit', 'submit', array('label' => 'Update'));
 
        return $form;
    }
    /**
     * Edits an existing Discipline entity.
     *
     * @Route("/{id}", name="discipline_update")
     * @Method("PUT")
     * @Template("dkSchoolManagerBundle:Discipline:edit.html.twig")
     */
    public function updateAction(Request $request, $id)
    {
        $em = $this->getDoctrine()->getManager();
 
        $entity = $em->getRepository('dkSchoolManagerBundle:Discipline')->find($id);
 
        if (!$entity) {
            throw $this->createNotFoundException('Unable to find Discipline entity.');
        }
 
        $deleteForm = $this->createDeleteForm($id);
        $editForm = $this->createEditForm($entity);
        $editForm->handleRequest($request);
 
        if ($editForm->isValid()) {
            $em->flush();
 
            return $this->redirect($this->generateUrl('discipline_show', array('id' => $id)));
        }
 
        return array(
            'entity'      => $entity,
            'edit_form'   => $editForm->createView(),
            'delete_form' => $deleteForm->createView(),
        );
    }
    /**
     * Deletes a Discipline entity.
     *
     * @Route("/{id}", name="discipline_delete")
     * @Method("DELETE")
     */
    public function deleteAction(Request $request, $id)
    {
        $form = $this->createDeleteForm($id);
        $form->handleRequest($request);
 
        if ($form->isValid()) {
            $em = $this->getDoctrine()->getManager();
            $entity = $em->getRepository('dkSchoolManagerBundle:Discipline')->find($id);
 
            if (!$entity) {
                throw $this->createNotFoundException('Unable to find Discipline entity.');
            }
 
            $em->remove($entity);
            $em->flush();
        }
 
        return $this->redirect($this->generateUrl('discipline'));
    }
 
    /**
     * Creates a form to delete a Discipline entity by id.
     *
     * @param mixed $id The entity id
     *
     * @return \Symfony\Component\Form\Form The form
     */
    private function createDeleteForm($id)
    {
        return $this->createFormBuilder()
            ->setAction($this->generateUrl('discipline_delete', array('id' => $id)))
            ->setMethod('DELETE')
            ->add('submit', 'submit', array('label' => 'Delete'))
            ->getForm()
        ;
    }
}