Browse Source

Infos complémentaires

François Drouhard 3 years ago
parent
commit
b2c12069a6

+ 35 - 0
migrations/Version20210706193204.php

@@ -0,0 +1,35 @@
+<?php
+
+declare(strict_types=1);
+
+namespace DoctrineMigrations;
+
+use Doctrine\DBAL\Schema\Schema;
+use Doctrine\Migrations\AbstractMigration;
+
+/**
+ * Auto-generated Migration: Please modify to your needs!
+ */
+final class Version20210706193204 extends AbstractMigration
+{
+    public function getDescription(): string
+    {
+        return '';
+    }
+
+    public function up(Schema $schema): void
+    {
+        // this up() migration is auto-generated, please modify it to your needs
+        $this->addSql('ALTER TABLE commentaire CHANGE note note INT DEFAULT NULL, CHANGE date_submitted date_submitted DATETIME DEFAULT NULL');
+        $this->addSql('ALTER TABLE film ADD information LONGTEXT DEFAULT NULL, CHANGE media_video_id media_video_id INT DEFAULT NULL, CHANGE authered_id authered_id INT DEFAULT NULL, CHANGE annee annee DATE DEFAULT NULL, CHANGE date_submited date_submited DATETIME DEFAULT NULL, CHANGE lien lien VARCHAR(191) DEFAULT NULL, CHANGE note note DOUBLE PRECISION DEFAULT NULL, CHANGE nb_coms nb_coms INT DEFAULT NULL');
+        $this->addSql('ALTER TABLE user CHANGE prenom prenom VARCHAR(191) DEFAULT NULL, CHANGE nom nom VARCHAR(191) DEFAULT NULL, CHANGE salt salt VARCHAR(191) DEFAULT NULL');
+    }
+
+    public function down(Schema $schema): void
+    {
+        // this down() migration is auto-generated, please modify it to your needs
+        $this->addSql('ALTER TABLE commentaire CHANGE note note INT DEFAULT NULL, CHANGE date_submitted date_submitted DATETIME DEFAULT \'NULL\'');
+        $this->addSql('ALTER TABLE film DROP information, CHANGE media_video_id media_video_id INT DEFAULT NULL, CHANGE authered_id authered_id INT DEFAULT NULL, CHANGE annee annee DATE DEFAULT \'NULL\', CHANGE date_submited date_submited DATETIME DEFAULT \'NULL\', CHANGE lien lien VARCHAR(191) CHARACTER SET utf8mb4 DEFAULT \'NULL\' COLLATE `utf8mb4_unicode_ci`, CHANGE note note DOUBLE PRECISION DEFAULT \'NULL\', CHANGE nb_coms nb_coms INT DEFAULT NULL');
+        $this->addSql('ALTER TABLE user CHANGE prenom prenom VARCHAR(191) CHARACTER SET utf8mb4 DEFAULT \'NULL\' COLLATE `utf8mb4_unicode_ci`, CHANGE nom nom VARCHAR(191) CHARACTER SET utf8mb4 DEFAULT \'NULL\' COLLATE `utf8mb4_unicode_ci`, CHANGE salt salt VARCHAR(191) CHARACTER SET utf8mb4 DEFAULT \'NULL\' COLLATE `utf8mb4_unicode_ci`');
+    }
+}

+ 17 - 0
src/Entity/Film.php

@@ -152,6 +152,11 @@ class Film
      */
     private $genres;
 
+    /**
+     * @ORM\Column(type="text", nullable=true)
+     */
+    private $information;
+
     /**
      * @return \App\Entity\User $authered
      */
@@ -495,6 +500,18 @@ class Film
         $this->nbComs = $nbComs;
     }
 
+    public function getInformation(): ?string
+    {
+        return $this->information;
+    }
+
+    public function setInformation(?string $information): self
+    {
+        $this->information = $information;
+
+        return $this;
+    }
+
 
 
 }

+ 4 - 0
src/Form/FilmType.php

@@ -4,6 +4,7 @@ namespace App\Form;
 
 use Symfony\Component\Form\Extension\Core\Type\CollectionType;
 use Symfony\Component\Form\Extension\Core\Type\TextType;
+use Symfony\Component\Form\Extension\Core\Type\TextareaType;
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\Extension\Core\Type\DateType;
 use Symfony\Component\Form\FormBuilderInterface;
@@ -33,6 +34,9 @@ class FilmType extends AbstractType
             ->add('mediaVideo', MediaVideoType::class,array(
                 'required'  =>  false,
             ))
+            ->add('information', TextareaType::class, array(
+                'required' => false,
+            ))
             ->add('genres', CollectionType::class, array(
                 'entry_type'    =>  GenreType::class,
                 'entry_options' =>  array('label'=>false),

+ 1 - 1
src/Repository/UserRepository.php

@@ -3,7 +3,7 @@
 namespace App\Repository;
 
 use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
-use Doctrine\Common\Persistence\ManagerRegistry;
+use Doctrine\Persistence\ManagerRegistry;
 use App\Entity\User;
 
 /**

+ 1 - 1
src/Service/FilmCreationListener.php

@@ -3,7 +3,7 @@
 namespace App\Service;
 
 use App\Entity\Commentaire;
-use Doctrine\Common\Persistence\Event\LifecycleEventArgs;
+use Doctrine\Persistence\Event\LifecycleEventArgs;
 use App\Entity\Film;
 use Symfony\Component\Config\Definition\Exception\Exception;
 

+ 1 - 1
src/Service/NoteListener.php

@@ -3,7 +3,7 @@
 namespace App\Service;
 
 use App\Entity\Commentaire;;
-use Doctrine\Common\Persistence\Event\LifecycleEventArgs;
+use Doctrine\Persistence\Event\LifecycleEventArgs;
 
 
 class NoteListener

+ 2 - 0
templates/videotheque/form.html.twig

@@ -9,10 +9,12 @@
                     {{ form_row(form.annee) }}
                     {{ form_row(form.lien) }}
                     {% form_theme form 'bootstrap_4_layout.html.twig' %}
+                    {{ form_row(form.information) }}
 
                     {{ form_label(form.mediaVideo, 'Bande annonce') }}
                     {{ form_errors(form.mediaVideo) }}
                     {{ form_widget(form.mediaVideo) }}
+                    
                 </div>
             </div>
             <div class="col">

+ 1 - 1
templates/videotheque/liste.html.twig

@@ -105,7 +105,7 @@
 						</td>
 					{% endif %}
 					<td>
-						<a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}">{{ film.titre }}</a>
+						<a href="{{ path('videotheque_voirfilm', {'id': film.id}) }}>"<span data-toggle="tooltip" data-placement="right" title="{{ film.information }}">{{ film.titre }}</span></a>
 						{% if film.new %}<span class="badge badge-light">New</span>{% endif %}
 						{% if film.nbComs %}<span class="badge badge-light" data-toggle="tooltip" data-original-title="{{ film.nbComs }} commentaire(s)">{{ film.nbComs }}</span>{% endif %}
 

+ 15 - 0
templates/videotheque/voirfilm.html.twig

@@ -106,6 +106,21 @@
                         </div>
                     </div>
 
+                    <div>&nbsp;</div>
+
+                    <div class="card border-info">
+                        <div class="card-header">
+                                <h5>Informations complémentaires</h5>
+                        </div>
+                        <div class="card-body">
+                            {% if film.information is not null %}
+                                <p>{{ film.information | nl2br }}</p>
+                            {% else %}
+                                <p>Pas d'information</p>
+                            {% endif %}
+                        </div>
+                    </div>
+
                 </div>
                 <div class="col-sm-5">
                     <div class="card border-info">

+ 1 - 0
translations/messages.fr.yaml

@@ -8,6 +8,7 @@ Genres: Genres
 Réalisateurs: Réalisateurs
 Enregistrer: Enregistrer
 Enregistrer le commentaire: Enregistrer le commentaire
+Information: informations complémentaires
 Email: Email
 Envoyer-mail: Envoyer le mail
 password: Mot de passe