-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-editar_pelicula.php
294 lines (279 loc) · 13.7 KB
/
page-editar_pelicula.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php
// Si no es minimo contributor, no tiene acceso a esta pagina. Mostremos mensaje
if ( !current_user_can( 'edit_posts' ) ) :
wp_die( 'No tiene acceso a esta pagina. Probablemente no este registrado o no haya iniciado sesion', 'Error al cargar la página' );
endif;
if ( isset( $_GET['pel'] ) )
$dbid = $_GET['pel'];
else wp_die( "Tiene que haber un parametro de pelicula!", "404!" );
$args = array(
'numberposts' => 1,
'post_type' => 'pelicula',
'meta_key' => '_database_id',
'meta_value' => $dbid,
'meta_compare' => '='
);
$query = new WP_Query( $args );
$args2 = array(
'numberposts' => -1,
'post_type' => 'persona',
'meta_key' => '_per_database_id',
'orderby' => 'title'
);
$query2 = get_posts( $args2 );
$cargos = cvnzl_get_guiones();
$pelicula = cvnzl_get_movie_main_data( $dbid );
extract($pelicula);
// Hacer el titulo de la pagina dinamico para cada pelicula
function cvnzl_custom_title( $title_parts ) { global $query;
$titulo = $query->post->post_title;
$title_parts['title'] .= " ". $titulo;
return $title_parts;
}
add_filter( 'document_title_parts', 'cvnzl_custom_title', 10, 2 );
?>
<?php get_header(); ?>
<?php if ( $query->have_posts() ): ?>
<?php while ( $query->have_posts() ): $query->the_post(); ?>
<h1 class="text-center pel-titulo">Editando: <?php echo get_the_title(); ?> </h1>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4">
<?php if ( has_post_thumbnail() ): ?>
<img src="<?php the_post_thumbnail_url( 'full' ); ?>" title="<?php the_title_attribute(); ?>" alt="Poster: <?php the_title_attribute(); ?>" class="img-fluid poster rounded">
<?php else: ?>
<img src="https://placehold.it/350x200" title="<?php the_title_attribute(); ?>" alt="placeholder" class="img-fluid poster rounded">
<?php endif; ?>
</div> <!-- /.col-md-4 -->
</div> <!-- /.row -->
<div class="row">
<div class="col-md-12">
<div class="card bg-dark border border-light">
<div class="card-header">
<nav class="nav nav-pills" role="tablist" id="cambios-tabs">
<a href="#dgenerales" class="nav-item nav-link active" id="dgenerales-tab" role="tab" data-toggle="tab" aria-selected="true">Datos Generales</a>
<a href="#dficha-tecnica" class="nav-item nav-link" id="dficha-tecnica-tab" role="tab" data-toggle="tab" aria-selected="false">Ficha Técnica</a>
<a href="#dcritica" class="nav-item nav-link" id="dcritica-tab" role="tab" data-toggle="tab" aria-selected="false">Crítica</a>
<a href="#dgentem" class="nav-item nav-link" id="dgentem-tab" role="tab" data-toggle="tab" aria-selected="false">Género y Temática</a>
<a href="#dlugares" class="nav-item nav-link" id="dlugares-tab" role="tab" data-toggle="tab" aria-controls="dlugares" aria-selected="false">Lugares y Locaciones</a>
<a href="#dpendiente" class="nav-item nav-link" id="dpendiente-tab" role="tab" data-toggle="tab" aria-controls="dpendiente" aria-selected="false">Pendiente</a>
</nav> <!-- /#cambios-tabs -->
</div>
<div class="card-body">
<form action="<?php echo get_stylesheet_directory_uri() . "/procesar-prop.php" ?>" method="post" id="editar-peli-form">
<div class="tab-content">
<div class="tab-pane fade show active" id="dgenerales" aria-labelledby="dgenerales-tab" role="tabpanel">
<h2 class="text-center">Datos Generales</h2>
<div class="row">
<div class="col-md-6">
<h3 class="text-center">Título</h3>
</div> <!-- /.col-md-6 -->
<div class="col-md-6">
<input type="text" value="<?php echo get_the_title(); ?>" disabled class="form-control disabled">
</div> <!-- /.col-md-6 -->
<div class="col-md-6 align-self-center">
<h3 class="text-center">Proponer Sinópsis</h3>
</div> <!-- /.col-md-6 -->
<div class="col-md-6">
<textarea style="resize:none" name="propuesta_sinopsis" id="propuesta-sinopsis" cols="30" rows="10" class="form-control" placeholder="<?php echo get_the_content(); ?>"></textarea> <!-- /.textarea -->
<div class="form-check form-check-inline">
<label class="form-check-label" for="cb_hedit">
<input type="checkbox" name="habilitar_edicion" class="form-check-input" id="cb_hedit">
Editar sinópsis actual
</label>
</div> <!-- /.form-check -->
</div> <!-- /.col-md-6 -->
</div> <!-- /.row -->
</div> <!-- /.tab-pane -->
<div class="tab-pane fade" id="dficha-tecnica" aria-labelledby="dficha-tecnica-tab" role="tabpanel">
<h2 class="text-center mb-3">Ficha Técnica</h2>
<div class="col-md-6 align-self-center">
<h5>Cambios de Ficha Técnica
<small class="icon-wrap">
<a href="#" class="js-add-new text-secondary" data-adds='ft' id="ft-btn-add" title="Añadir nuevo">
<span class="fa-stack fa-sm">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-plus fa-stack-1x"></i>
</span>
</a>
</small>
</h5>
</div>
<div class="col-md-12" id="ft-container">
<div class="ft row" data-rowtab="ft" id="ft-row-parent-1">
<div class="col-md-6">
<div class="form-group">
<label for="ft-select-puesto-1">Puesto de Participación</label>
<select name="ft_campopart[]" id="ft-select-puesto-1" class="form-control">
<option value="0">Seleccione un campo</option>
<?php foreach ($cargos as $cargo): ?>
<option value="<?php echo $cargo['id']; ?>"><?php echo $cargo["tip_car_nombre"]; ?></option>
<?php endforeach ?>
</select>
</div>
</div>
<div class="col-sm-10 col-md-5">
<div class="form-group">
<label for="ft-input-resp-1">Nombre del responsable</label>
<input type="text" class="form-control js-search" list="ft-cargos" id="ft-input-resp-1" name="ft_nombreresp[]">
<!-- <datalist id="ft-cargos" class="js-datalist">
<?php foreach ($query2 as $post) :?>
<?php $database_id = get_post_meta( $post->ID, '_per_database_id', true ); ?>
<option value="<?php echo $post->post_title ?>"><?php echo $database_id; ?></option>
<?php endforeach; ?>
<?php $query->reset_postdata(); ?>
</datalist> -->
</div> <!-- .form-group -->
</div> <!-- .col-md-6 -->
<div class="col-sm-2 col-md-1">
<div class="form-group align-middle">
<a href="#" class="text-secondary js-btn-remove" data-deletes="#ft-row-parent-1" title="Quitar propuesta">
<span class="fa-stack fa-sm">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-minus fa-stack-1x"></i>
</span>
</a>
</div> <!-- .form-group -->
</div> <!-- .col-md-1 -->
</div> <!-- .row -->
</div> <!-- .col-md-12 -->
</div> <!-- /.tab-pane -->
<div class="tab-pane fade" id="dcritica" aria-labelledby="dcritica-tab" role="tabpanel">
<h2 class="text-center">Crítica</h2>
</div> <!-- /.tab-pane -->
<div class="tab-pane fade" id="dgentem" aria-labelledby="dgentem-tab" role="tabpanel">
<h2 class="text-center">Géneros y Temáticas</h2>
<div class="row">
<div class="col-md-6 align-self-center">
<h3 class="text-center">Género</h3>
</div> <!-- /.col-md-6 -->
<div class="col-md-6">
<div class="form-group" id="lista-generos">
<?php
$generos = cvnzl_get_movie_genres();
$cols = 0;
$generos_peli = cvnzl_get_movie_genres( get_post_meta( get_the_ID(), '_database_id', true ) );
// error_log("Generos de esta pelicula: ".print_r($generos_peli, true));
foreach ( $generos as $genero ) :
$gen_nombre = $genero;
$has_genre = in_array( $genero, $generos_peli );
?>
<?php if (!($cols % 3)): ?>
<div class="row">
<?php endif; ?>
<div class="col-md-4">
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" name="generos[]" class="form-check-input" value="<?php echo $gen_nombre; ?>" <?php if( $has_genre ) echo "checked"; ?>>
<?php echo $gen_nombre; ?>
</label>
</div> <!-- /.form-check -->
</div>
<?php $cols++; if (!($cols % 3) or $cols == count($generos)): ?>
</div>
<?php endif; ?>
<?php endforeach; ?>
</div> <!-- /#lista-generos -->
</div> <!-- /.col-md-6 -->
</div> <!-- /.row -->
<hr>
<div class="row">
<div class="col-md-6 align-self-center">
<h3 class="text-center">Temáticas</h3>
</div>
<div class="col-md-6">
<div class="form-group" id="lista-tematicas">
<?php
$tematicas = cvnzl_get_movie_themes();
$tematicas_peli = cvnzl_get_movie_themes( get_post_meta( get_the_ID(), '_database_id', true ) );
$cols = 0;
foreach ( $tematicas as $tematica ):
$tem_nombre = $tematica;
$has_tem = in_array( $tematica, $tematicas_peli );
?>
<?php if (!($cols % 3)): ?>
<div class="row">
<?php endif; ?>
<div class="col-md-4">
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" value="<?php echo $tem_nombre; ?>" name="tematicas[]" class="form-check-input" <?php if( $has_tem ) echo "checked"; ?>>
<?php echo $tem_nombre; ?>
</label>
</div> <!-- /.form-check -->
</div> <!-- /.col-md-4 -->
<?php $cols++; if (!($cols % 3) or $cols == count($tematicas)): ?>
</div> <!-- /.row -->
<?php endif; ?>
<?php endforeach; ?>
</div> <!-- /#lista-tematicas -->
</div> <!-- /.col-md-6 -->
</div> <!-- /.row -->
</div> <!-- /.tab-pane -->
<div class="tab-pane fade" id="dlugares" aria-labelledby="dlugares-tab" role="tabpanel">
<h2 class="text-center">Lugares</h2>
<h5>Nueva locación
<small class="icon-wrap">
<a href="#" class="js-add-new text-secondary" data-adds="lug" id="lug-btn-add" title="Añadir nuevo">
<span class="fa-stack fa-sm">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-plus fa-stack-1x"></i>
</span>
</a>
</small>
</h5>
<div class="col-md-12" id="lug-container">
<div class="lug row" data-rowtab='lug' id="lug-row-parent-1">
<div class="col-md-3">
<div class="form-group">
<label for="lug-input-edf-1">Lugar físico</label>
<input type="text" class="form-control" id="lug-input-edf-1" name="lug_edf[]">
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label for="lug-input-ciudad-1">Ciudad</label>
<input type="text" class="form-control" id="lug-input-ciudad-1" name="lug_ciudad[]">
</div>
</div>
<div class="col-md-3">
<div class="form-group">
<label for="lug-input-estado-1">Estado</label>
<input type="text" class="form-control" id="lug-input-estado-1" name="lug_estado[]">
</div>
</div>
<div class="col-md-2">
<div class="form-group">
<label for="lug-input-pais-1">País</label>
<input type="text" class="form-control" id="lug-input-pais-1" name="lug_pais[]">
</div>
</div>
<div class="col-md-1">
<div class="form-group">
<a href="#" class="text-secondary js-btn-remove" data-deletes="#lug-row-parent-1" title="Quitar propuesta">
<span class="fa-stack fa-sm">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-minus fa-stack-1x"></i>
</span>
</a>
</div> <!-- .form-group -->
</div> <!-- .col-md-1 -->
</div>
</div>
</div> <!-- #dlugares -->
<div class="tab-pane fade" id="dpendiente" aria-labelledby="dpendiente-tab" role="tabpanel">
<h2 class="text-center">Pendiente</h2>
</div> <!-- #dpendiente -->
</div> <!-- /.tab-content -->
</div> <!-- /.card-body -->
<div class="card-footer">
<button class="btn btn-light mx-auto cursor-pointer" name="sub_props" type="submit">Enviar propuestas</button>
</div>
</form> <!-- #editar-peli-form -->
</div> <!-- /.card -->
</div> <!-- /.col-md-12 -->
</div> <!-- /.row -->
</div> <!-- /.container -->
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>