Browse Source

lien url vers une fiche ciné

François 6 years ago
parent
commit
6aa6815c2f

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

@@ -42,6 +42,13 @@ class Film
      */
     private $dateSubmited;
 
+    /**
+     * @var string
+     *
+     * @ORM\Column(name="lien", type="string", length=255, nullable=true)
+     */
+    private $lien;
+
     /**
      * @return \DateTime
      */
@@ -186,6 +193,22 @@ class Film
         return $this->annee;
     }
 
+    /**
+     * @return string
+     */
+    public function getLien()
+    {
+        return $this->lien;
+    }
+
+    /**
+     * @param string $lien
+     */
+    public function setLien($lien = null)
+    {
+        $this->lien = $lien;
+    }
+
     /**
      * Constructor
      */

+ 3 - 0
src/AppBundle/Form/FilmType.php

@@ -32,6 +32,9 @@ class FilmType extends AbstractType
                 'html5'     =>  true,
                 'required'  =>  false
             ))
+            ->add('lien', TextType::class, array(
+                'required'  => false
+            ))
             ->add('mediaVideo', MediaVideoType::class,array(
                 //'required'  =>  false,
             ))

+ 3 - 0
src/AppBundle/Resources/views/videotheque/form.html.twig

@@ -8,6 +8,9 @@
                 <div class="form-group row">
                     {{ form_row(form.annee) }}
                 </div>
+                <div class="form-group row">
+                    {{ form_row(form.lien) }}
+                </div>
                 <div class="form-group row">
                     {{ form_label(form.mediaVideo, 'Bande annonce') }}
                     {{ form_errors(form.mediaVideo) }}

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

@@ -21,6 +21,7 @@
 			<th>Genre</th>
 			<th>Réalisateur</th>
 			<th>Année</th>
+			<th>Lien</th>
 			<th>Actions</th>
 		</tr>
 	</thead>
@@ -73,6 +74,7 @@
 			{% endif %}
 			</td>
 			<td>{{ film.annee | date('Y') }}</td>
+			<td>{% if not film.lien == "" %}<a target="_blank" href="{{ film.lien }}"><i class="fa fa-external-link"></i></a>{% endif %}</td>
 			<td>
 				{% if is_granted('ROLE_ADMIN') %}<a href="{{ path('videotheque_supprimer', {'id': film.id})  }}"><i class="fa fa-trash", style="color:Tomato;"></i></a>{% endif %}
 				<a href="{{ path('videotheque_modifier', {'id': film.id})  }}"><i class="fa fa-edit", style="color:DodgerBlue;"></i></a>