浏览代码

Back réalisateur

François 6 年之前
父节点
当前提交
ebe67f7656

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

@@ -0,0 +1,100 @@
+<?php
+
+namespace AppBundle\Controller;
+
+use AppBundle\Entity\Realisateur;
+use AppBundle\Form\RealisateurType;
+use Symfony\Bundle\FrameworkBundle\Controller\Controller;
+use Symfony\Component\Routing\Annotation\Route;
+use Symfony\Component\HttpFoundation\Request;
+
+class RealisateurController extends Controller
+{
+    /**
+     * @Route("/real/", name="realisateur_liste")
+     */
+    public function indexAction() {
+        $em = $this->getDoctrine()->getManager();
+        $repo = $em->getRepository('AppBundle:Realisateur');
+        $realisateurs = $repo->findAll();
+
+        return $this->render('@App/realisateur/liste.html.twig', array(
+            'realisateurs'  => $realisateurs
+        ));
+    }
+
+	/**
+	 * @Route("/real/ajouter", name="realisateur_ajouter")
+	 */
+	public function ajouterAction(Request $request)
+	{
+		$realisateur = new Realisateur();
+		$form = $this->createForm(RealisateurType::class, $realisateur);
+
+		$form->handleRequest($request);
+		if ($form->isSubmitted() && $form->isValid())
+		{
+			$realisateur = $form->getData();
+			$em = $this->getDoctrine()->getManager();
+			$em->persist($realisateur);
+			$em->flush();
+			$this->addFlash('success', 'Le réalisateur a été ajouté');
+			return $this->redirectToRoute('realisateur_liste');
+		}
+
+		return $this->render('@App/realisateur/ajouter.html.twig', array(
+			'form'	=>	$form->createView(),
+			'realisateur'	=>	$realisateur
+		));
+	}
+
+	/**
+	 * @Route("/real/modifier/{id}", name="realisateur_modifier")
+	 */
+	public function modifierAction(Request $request, $id)
+	{
+		$em = $this->getDoctrine()->getManager();
+		$repo = $em->getRepository('AppBundle:Realisateur');
+		$realisateur = $repo->find($id);
+		$form = $this->createForm(RealisateurType::class, $realisateur);
+		$form->handleRequest($request);
+
+		if ($form->isSubmitted() && $form->isValid())
+		{
+            $realisateur = $form->getData();
+			$em->flush();
+			$this->addFlash('success', 'Le réalisateur a été modifié');
+			return $this->redirectToRoute('realisateur_liste');
+		}
+
+
+		return $this->render('@App/realisateur/modifier.html.twig', array(
+			'form'	=> $form->createView()
+		));
+	}
+
+	/**
+	 * @Route("/real/supprimer/{id}", name="realisateur_supprimer")
+	 */
+	public function supprimerAction($id)
+	{
+	    $em = $this->getDoctrine()->getManager();
+	    $repo = $em->getRepository('AppBundle:Realisateur');
+        $realisateur = $repo->find($id);
+
+        $form = $this->get('form.factory')->create();
+        if ($form->isSubmitted() && $form->isValid())
+        {
+            $em->remove($realisateur);
+            $em->flush();
+            $this->addFlash('success', "Le réalisateur \"$realisateur\" a bien été supprimé.");
+            return $this->redirectToRoute('realisateur_liste');
+        }
+
+		return $this->render('@App/realisateur/supprimer.html.twig', array(
+			'realisateur'  =>  $realisateur,
+            'form'  =>  $form->createView()
+		));
+	}
+
+}

+ 2 - 2
src/AppBundle/Entity/Realisateur.php

@@ -36,7 +36,7 @@ class Realisateur
     private $nom;
 
     /**
-     * @ORM\OneToMany(targetEntity="AppBundle\Entity\Film", mappedBy="realisateur")
+     * @ORM\OneToMany(targetEntity="AppBundle\Entity\Film", mappedBy="realisateur", cascade="persist")
      * @var \Doctrine\Common\Collections\Collection
      */
     private $films;
@@ -143,7 +143,7 @@ class Realisateur
     /**
      * Get nomComplet
      *
-     * @Return string
+     * @return string
      */
     public function getNomComplet ()
     {

+ 3 - 1
src/AppBundle/Form/RealisateurType.php

@@ -4,6 +4,7 @@ namespace AppBundle\Form;
 
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\Extension\Core\Type\SearchType;
+use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\OptionsResolver\OptionsResolver;
 
@@ -15,7 +16,8 @@ class RealisateurType extends AbstractType
     public function buildForm(FormBuilderInterface $builder, array $options)
     {
         $builder->add('prenom', SearchType::class)
-                ->add('nom', SearchType::class);
+                ->add('nom', SearchType::class)
+                ->add('save', SubmitType::class, array ('label' =>  'Enregistrer'));
     }
 
     /**

+ 7 - 0
src/AppBundle/Resources/views/realisateur/ajouter.html.twig

@@ -0,0 +1,7 @@
+{% extends "base.html.twig" %}
+
+{% block title %}Ajouter un réalisateur{% endblock %}
+{% block titre %}Réalisateur - Ajouter{% endblock %}
+{% block body %}
+	{{  form(form) }}
+{% endblock %}

+ 33 - 0
src/AppBundle/Resources/views/realisateur/liste.html.twig

@@ -0,0 +1,33 @@
+{% extends "@App/videotheque/base.html.twig" %}
+
+{% block body %}
+<table class="table table-bordered table-hover table-sm">
+	<thead class="thead-dark">
+		<tr>
+			<th>Nom</th>
+			<th>Films</th>
+			<th>Actions</th>
+		</tr>
+	</thead>
+	<tbody>
+		{% for realisateur in realisateurs %}
+		<tr>
+			<td>{{ realisateur.nomComplet }}</td>
+			<td>
+			{% if realisateur.films is defined %}
+				{% for film in realisateur.films %}
+					<p>{{  film.titre }}</p>
+				{% endfor %}
+			{% endif %}
+			</td>
+			<td>
+				<a href="{{ path('realisateur_supprimer', {'id': realisateur.id})  }}"><i class="fas fa-trash", style="color:Tomato;"></i></a>
+				<a href="{{ path('realisateur_modifier', {'id': realisateur.id})  }}"><i class="fas fa-edit", style="color:DodgerBlue;"></i></a>
+
+
+			</td>
+		</tr>
+		{% endfor %}
+	</tbody>
+</table>
+{% endblock %}

+ 8 - 0
src/AppBundle/Resources/views/realisateur/modifier.html.twig

@@ -0,0 +1,8 @@
+{% extends "base.html.twig" %}
+
+{% block title %}Modifier un film{% endblock %}
+{% block titre %}Réalisateurs - Modifier{% endblock %}
+
+{% block body %}
+	{{  form(form) }}
+{% endblock %}

+ 19 - 0
src/AppBundle/Resources/views/realisateur/supprimer.html.twig

@@ -0,0 +1,19 @@
+{% extends "base.html.twig" %}
+
+{% block title %}Supprimer un film{% endblock %}
+{% block titre %}Réalisateurs - Supprimer{% endblock %}
+
+{% block body %}
+    <h2>Confirmation ?</h2>
+    <p>Êtes vous certain de vouloir supprimer le réalisateur "{{ realisateur.nomComplet }}" ?</p>
+    <form action="{{ path('realisateur_supprimer', {'id': realisateur.id}) }}" method="post">
+        <a href="{{ path('realisateur_liste', {'id': realisateur.id}) }}" class="btn btn-secondary">
+            <i class="fas fa-chevron-circle-left"></i>
+            Retour à la liste des réalisateurs
+        </a>
+        {# Ici j'ai écrit le bouton de soumission à la main #}
+        <input type="submit" value="Supprimer" class="btn btn-danger" />
+        {# Ceci va générer le champ CSRF #}
+        {{ form_rest(form) }}
+    </form>
+{% endblock %}

+ 1 - 1
src/AppBundle/Resources/views/security/supprimeruser.html.twig

@@ -7,7 +7,7 @@
     <h2>Confirmation ?</h2>
     <p>Êtes vous certain de vouloir supprimer l'utilisateur "{{ user.username }}" ?</p>
     <form action="{{ path('admin_deluser', {'id': user.id}) }}" method="post">
-        <a href="{{ path('admin_index' }}" class="btn btn-default">
+        <a href="{{ path('admin_index' }}" class="btn btn-secondary">
             <i class="fas fa-chevron-circle-left"></i>
             Retour à la liste des utilisateurs
         </a>