Browse Source

nettoyage notes et commentaires + suppression realisateur par admin

François 6 years ago
parent
commit
fa93b5df93

+ 2 - 0
src/AppBundle/Controller/RealisateurController.php

@@ -4,6 +4,7 @@ namespace AppBundle\Controller;
 
 use AppBundle\Entity\Realisateur;
 use AppBundle\Form\RealisateurType;
+use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Symfony\Component\Routing\Annotation\Route;
 use Symfony\Component\HttpFoundation\Request;
@@ -73,6 +74,7 @@ class RealisateurController extends Controller
 
 	/**
 	 * @Route("/real/supprimer/{id}", name="realisateur_supprimer")
+     * @Security("has_role('ROLE_ADMIN')")
 	 */
 	public function supprimerAction(Request $request, Realisateur $realisateur)
     {

+ 0 - 64
src/AppBundle/Entity/Film.php

@@ -35,20 +35,6 @@ class Film
      */
     private $annee;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="commentaire", type="text", nullable=true)
-     */
-    private $commentaire;
-
-    /**
-     * @var integer
-     *
-     * @ORM\Column(name="note", type="integer", nullable=true)
-     */
-    private $note;
-
     /**
      * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Realisateur", inversedBy="films", cascade="persist")
      * @var \Doctrine\Common\Collections\Collection
@@ -84,8 +70,6 @@ class Film
         $authered->addFilm($this);
     }
 
-
-
     /**
      * Get id
      *
@@ -144,54 +128,6 @@ class Film
         return $this->annee;
     }
 
-    /**
-     * Set commentaire
-     *
-     * @param string $commentaire
-     *
-     * @return Film
-     */
-    public function setCommentaire($commentaire)
-    {
-        $this->commentaire = $commentaire;
-
-        return $this;
-    }
-
-    /**
-     * Get titre
-     *
-     * @return string
-     */
-    public function getCommentaire()
-    {
-        return $this->commentaire;
-    }
-
-    /**
-     * Set note
-     *
-     * @param integer $note
-     *
-     * @return Film
-     */
-    public function setNote($note)
-    {
-        $this->note = $note;
-
-        return $this;
-    }
-
-    /**
-     * Get note
-     *
-     * @return integer
-     */
-    public function getNote()
-    {
-        return $this->note;
-    }
-
     /**
      * Constructor
      */

+ 2 - 5
src/AppBundle/Form/FilmType.php

@@ -48,16 +48,13 @@ class FilmType extends AbstractType
                 'allow_add'     =>  true,
                 'allow_delete'  =>  true
             ))
-            ->add('commentaire', TextareaType::class, array(
-                'required'  => false
-            ))
-            ->add('note', RangeType::class, array (
+            /*->add('note', RangeType::class, array (
                 'required'  => false,
                 'attr'      => array (
                     'min'   => 0,
                     'max'   => 5
                 )
-            ))
+            ))*/
 		    ->add('save', SubmitType::class, array('label' => 'Enregistrer'));
     }
     

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

@@ -16,13 +16,17 @@
 			<td>{{ realisateur.nomComplet }}</td>
 			<td>
 			{% if realisateur.films is defined %}
+				<ul>
 				{% for film in realisateur.films %}
-					<p>{{  film.titre }}</p>
+					<li>{{  film.titre }}</li>
 				{% endfor %}
+				</ul>
 			{% endif %}
 			</td>
 			<td>
+				{% if is_granted('ROLE_ADMIN') %}
 				<a href="{{ path('realisateur_supprimer', {'id': realisateur.id})  }}"><i class="fas fa-trash", style="color:Tomato;"></i></a>
+				{% endif %}
 				<a href="{{ path('realisateur_modifier', {'id': realisateur.id})  }}"><i class="fas fa-edit", style="color:DodgerBlue;"></i></a>
 
 

+ 16 - 10
src/AppBundle/Resources/views/videotheque/form.html.twig

@@ -1,17 +1,23 @@
     {{ form_start(form) }}
-    <div class="container">
-        <div class="form-group row">
-            {{ form_row(form.titre) }}
-        </div>
-        <div class="form-group row">
+    <div class="container-fluid">
+        <div class="row">
             <div class="col">
-                {{ form_row(form.annee) }}
-                {{ form_widget (form.realisateurs) }}
-                <a href="#" id="add_realisateur" class="btn btn-link">Ajouter un réalisateur</a>
+                <div class="form-group row">
+                    {{ form_row(form.titre) }}
+                </div>
+                <div class="form-group row">
+                    {{ form_row(form.annee) }}
+                </div>
             </div>
             <div class="col">
-                {{ form_row(form.note) }}
-                {{ form_row(form.commentaire) }}
+                <div class="form-group row">
+                    {{ form_widget (form.realisateurs) }}
+                    <a href="#" id="add_realisateur" class="btn btn-link">Ajouter un réalisateur</a>
+                    {#<div class="col">
+                        {{ form_row(form.note) }}
+                        {{ form_row(form.commentaire) }}
+                    </div>#}
+                </div>
             </div>
         </div>
     </div>

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

@@ -11,8 +11,8 @@
 			<th>Titre du film</th>
 			<th>Réalisateur</th>
 			<th>Année</th>
-			<th>Commentaire</th>
-			<th>Note</th>
+			{#<th>Commentaire</th>#}
+			{#<th>Note</th>#}
 			<th>Actions</th>
 		</tr>
 	</thead>
@@ -39,8 +39,8 @@
 			{% endif %}
 			</td>
 			<td>{{ film.annee | date('Y') }}</td>
-			<td>{{ film.commentaire }}</td>
-			<td>{{ film.note }}</td>
+			{#<td>{{ film.commentaire }}</td>"#}
+			{#<td>{{ film.note }}</td>#}
 			<td>
 				{% if is_granted('ROLE_ADMIN') %}<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fas fa-trash", style="color:Tomato;"></i></a>{% endif %}
 				<a href="{{ path('videotheque_modifier', {'id': film.id})  }}"><i class="fas fa-edit", style="color:DodgerBlue;"></i></a>