Ver Fonte

Ajout de l'auteur des dépots de film

François há 6 anos atrás
pai
commit
307d1e3108

+ 1 - 0
src/AppBundle/Controller/VideothequeController.php

@@ -38,6 +38,7 @@ class VideothequeController extends Controller
 	public function ajouterAction(Request $request)
 	{
 		$film = new Film;
+		$film->setUser($this->getUser());
 		$form = $this->createForm(FilmType::class, $film);
 
 		$form->handleRequest($request);

+ 24 - 1
src/AppBundle/Entity/Film.php

@@ -36,7 +36,7 @@ class Film
     private $annee;
 
     /**
-     * @var Text
+     * @var string
      *
      * @ORM\Column(name="commentaire", type="text", nullable=true)
      */
@@ -55,6 +55,29 @@ class Film
      */
     private $realisateurs;
 
+    /**
+     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="films")
+     * @ORM\JoinColumn(nullable=true)
+     */
+    private $user;
+
+    /**
+     * @return mixed
+     */
+    public function getUser()
+    {
+        return $this->user;
+    }
+
+    /**
+     * @param mixed $user
+     */
+    public function setUser($user)
+    {
+        $this->user = $user;
+    }
+
+
 
     /**
      * Get id

+ 47 - 1
src/AppBundle/Entity/User.php

@@ -51,6 +51,12 @@ class User implements UserInterface
     private $roles = array();
 
 
+    /**
+     * @ORM\OneToMany(targetEntity="AppBundle\Entity\Film", mappedBy="user")
+     * @var \Doctrine\Common\Collections\Collection
+     */
+    private $films;
+
     /**
      * Get id
      *
@@ -161,5 +167,45 @@ class User implements UserInterface
     {
 
     }
-}
+    /**
+     * Constructor
+     */
+    public function __construct()
+    {
+        $this->films = new \Doctrine\Common\Collections\ArrayCollection();
+    }
+
+    /**
+     * Add film
+     *
+     * @param \AppBundle\Entity\Film $film
+     *
+     * @return User
+     */
+    public function addFilm(\AppBundle\Entity\Film $film)
+    {
+        $this->films[] = $film;
 
+        return $this;
+    }
+
+    /**
+     * Remove film
+     *
+     * @param \AppBundle\Entity\Film $film
+     */
+    public function removeFilm(\AppBundle\Entity\Film $film)
+    {
+        $this->films->removeElement($film);
+    }
+
+    /**
+     * Get films
+     *
+     * @return \Doctrine\Common\Collections\Collection
+     */
+    public function getFilms()
+    {
+        return $this->films;
+    }
+}

+ 5 - 1
src/AppBundle/Resources/views/realisateur/ajouter.html.twig

@@ -3,5 +3,9 @@
 {% block title %}Ajouter un réalisateur{% endblock %}
 {% block titre %}Réalisateur - Ajouter{% endblock %}
 {% block body %}
-	{{  form(form) }}
+    {{  form_start(form) }}
+    {{ form_rest(form) }}
+	<button class="btn btn-primary" type="submit" formmethod="post">Enregistrer</button>
+    {{  form_end(form) }}
+
 {% endblock %}

+ 5 - 1
src/AppBundle/Resources/views/realisateur/modifier.html.twig

@@ -4,5 +4,9 @@
 {% block titre %}Réalisateurs - Modifier{% endblock %}
 
 {% block body %}
-	{{  form(form) }}
+	{{  form_start(form) }}
+	{{ form_rest(form) }}
+	<button class="btn btn-primary" type="submit" formmethod="post">Enregistrer</button>
+	{{  form_end(form) }}
+
 {% endblock %}

+ 2 - 0
src/AppBundle/Resources/views/videotheque/liste.html.twig

@@ -6,6 +6,7 @@
 	<table class="table table-bordered table-hover table-sm">
 	<thead class="thead-dark">
 		<tr>
+			<th>Auteur</th>
 			<th>Titre du film</th>
 			<th>Réalisateur</th>
 			<th>Année</th>
@@ -17,6 +18,7 @@
 	<tbody>
 		{% for film in listeFilms %}
 		<tr>
+			<td>{%  if film.user.username is defined %}{{ film.user.username }}{% endif %}</td>
 			<td>{{ film.titre }}</td>
 			<td>
 			{% if film.realisateurs is defined %}