-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-impression-projets.php
276 lines (230 loc) · 9.14 KB
/
page-impression-projets.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
<?php
/**
* Un template pour imprimer les projets de films
*/
?>
<?php $url = get_stylesheet_directory_uri(); ?>
<!doctype html>
<html class="no-js" lang="" moznomarginboxes mozdisallowselectionprint>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Impression des projets de films</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:500,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="<?php echo $url ?>/css/dev/30-print.css">
</head>
<body>
<?php
if ( current_user_can( 'publish_pages' ) ) {
?>
<!-- Begin Article -->
<article>
<div class="article-content">
<?php if ( bp_has_groups('per_page=34') ) : while ( bp_groups() ) : bp_the_group(); ?>
<?php
//meta info, id du groupe et id de l'article associé
$group_id = bp_get_group_id();
$fiche_projet_post_id = groups_get_groupmeta($group_id, 'fiche-projet-post-id');
$id_real = get_field('realisateur', $fiche_projet_post_id)['ID'];
//obtenir la session automatiquement
$sessions_terms = get_terms( array(
'taxonomy' => 'user-group',
'name__like' => 'session' ,
'fields' => 'names',
) );
$user_terms = wp_get_object_terms( $id_real , 'user-group', array('fields' => 'names'));
?>
<div class="profile clearfix print-profile">
<h3 class="red right"><?php echo current( ( array_intersect( $sessions_terms,$user_terms ) ) ); ?></h3>
<h1 ><?php bp_group_name(); ?></h1>
<div>Un film de
<?php
echo bp_core_get_user_displayname($id_real) .' | ';
the_field('duree', $fiche_projet_post_id); ?> | <?php the_field('genre', $fiche_projet_post_id);
echo '<div class="show-avatar">'. get_avatar($id_real,80);
echo '<div class="info-avatar">';
echo '<b>'. bp_core_get_user_displayname($id_real) .'</b><br/>'.
xprofile_get_field_data('e-mail', $id_real) .'<br/>'. xprofile_get_field_data('Téléphone', $id_real);
echo '</div></div>';
?>
</div>
<hr/>
<h3>Synopsis</h3>
<div class="center">
<?php bp_group_description() ?>
</div>
<h3>Équipe</h3>
<div class="center">
<?php
#les membres selon la fiche projet : # plateforme (on stock l'identifiant) + # non plateforme (on stock le nom renseigné)
$projet_members= array();
if( have_rows('equipe', $fiche_projet_post_id) ){
while ( have_rows('equipe', $fiche_projet_post_id) ) {
the_row();
echo '<b>'. get_sub_field('role', $fiche_projet_post_id) .' | </b>';
if(get_sub_field('membre_kino_kabaret_2017', $fiche_projet_post_id)){
echo bp_core_get_user_displayname( get_sub_field('membre_kino_kabaret_2017', $fiche_projet_post_id)['ID'] );
}
else if(get_sub_field('membre_hors_plateforme', $fiche_projet_post_id)){
echo get_sub_field('membre_hors_plateforme', $fiche_projet_post_id);
}
echo ' ';
}
}
//print_r($projet_members);
#les comédiens plateforme
echo '<b>Comédien-ne-s | </b>';
$comediens = array();
if( get_field('comedien-nes', $fiche_projet_post_id) ){
foreach(get_field('comedien-nes', $fiche_projet_post_id) as $comedienKK) {
$comediens[] = bp_core_get_user_displayname( $comedienKK['ID'] );
}
}
#les comédiens hors-plateforme
if( get_field('autres_comediens', $fiche_projet_post_id) ){
$comediens [] = wp_strip_all_tags(get_field('autres_comediens', $fiche_projet_post_id));
}
foreach($comediens as $c => $comedien) {
echo $comedien;
if($c<count($comediens)-1){
echo ', ';
}
else {
echo '<br/>';
}
}
?>
</div>
<?php
if( have_rows('lieux_de_tournage', $fiche_projet_post_id) ){
echo '<h3>Tournage</h3>';
while ( have_rows('lieux_de_tournage', $fiche_projet_post_id) ) {
the_row();
echo '<div class="boxcal">';
echo '<div class="strong">'. get_sub_field('jours', $fiche_projet_post_id) .', de ';
the_sub_field('tournage_debut', $fiche_projet_post_id);
echo ' à ';
the_sub_field('tournage_fin', $fiche_projet_post_id);
echo '</div>';
echo get_sub_field('adresse', $fiche_projet_post_id)['address'];
echo '</div>';
}
}
?>
<hr/>
<div class="besoins">
<h3 class="red">Besoins pour le film</h3>
<?php
if(get_field('besoin_equipe', $fiche_projet_post_id)){
echo '<div class="boxneed"><h4 class="red">Équipe</h4>';
foreach(get_field('besoin_equipe', $fiche_projet_post_id) as $need){
echo '• '. $need .'<br/>';
}
echo '</div>';
}
?>
<?php
if( have_rows('besoin_comediens', $fiche_projet_post_id) ){
echo '<div class="boxneed"><h4 class="red">Casting</h4>';
while ( have_rows('besoin_comediens', $fiche_projet_post_id) ) {
the_row();
$casting = array();
if(get_sub_field('besoin_comedien_sexe', $fiche_projet_post_id) && get_sub_field('besoin_comedien_sexe', $fiche_projet_post_id)!='Indifférent'){
$casting[] = get_sub_field('besoin_comedien_sexe', $fiche_projet_post_id);
}
if(get_sub_field('besoin_comedien_age_minimum', $fiche_projet_post_id) && get_sub_field('besoin_comedien_age_maximum', $fiche_projet_post_id)) {
$casting[] = 'âge caméra de '. get_sub_field('besoin_comedien_age_minimum', $fiche_projet_post_id) .' à '. get_sub_field('besoin_comedien_age_maximum', $fiche_projet_post_id) .' ans';
}
if(get_sub_field('besoin_comedien_cheveux', $fiche_projet_post_id) && get_sub_field('besoin_comedien_cheveux', $fiche_projet_post_id)!='Indifférent'){
$casting[] = 'cheveux '. get_sub_field('besoin_comedien_cheveux', $fiche_projet_post_id);
}
if(get_sub_field('besoin_comedien_yeux', $fiche_projet_post_id) && get_sub_field('besoin_comedien_yeux', $fiche_projet_post_id)!='Indifférent'){
$casting[] = 'Yeux '. get_sub_field('besoin_comedien_yeux', $fiche_projet_post_id);
}
if(get_sub_field('besoin_comedien_langues_jouees', $fiche_projet_post_id)){
$casting[] = 'parlant '. implode(' + ', get_sub_field('besoin_comedien_langues_jouees', $fiche_projet_post_id));
}
if(get_sub_field('besoin_comedien_talents', $fiche_projet_post_id)){
$casting[] = implode(', ', get_sub_field('besoin_comedien_talents', $fiche_projet_post_id));
}
//display casting
foreach($casting as $n => $need){
$need = strtolower($need);
if($n == 0){
echo ucfirst($need);
}
else {
echo $need;
}
if($n < (count($casting)-1)){
echo ', ';
}
}
echo '<br/>';
}
echo '</div>';
}
?>
<?php
if(get_field('casting_et_direction_acteur', $fiche_projet_post_id)) {
echo '<h4 class="red boxneed">Casting et direction d\'acteur</h4>';
}
?>
<?php
if(get_field('besoin_lieux_de_tournage', $fiche_projet_post_id)){
echo '<div class="boxneed"><h4 class="red">Lieux de tournage</h4>';
the_field('besoin_lieux_de_tournage', $fiche_projet_post_id);
echo '</div>';
}
?>
<?php
if(get_field('besoin_accessoires', $fiche_projet_post_id)){
echo '<div class="boxneed"><h4 class="red">Accessoires</h4>';
the_field('besoin_accessoires', $fiche_projet_post_id);
echo '</div>';
}
?>
<?php
if(get_field('besoin_costumes', $fiche_projet_post_id)){
echo '<div class="boxneed"><h4 class="red">Costumes</h4>';
the_field('besoin_costumes', $fiche_projet_post_id);
echo '</div>';
}
?>
<?php
//besoin_maquillage
if( have_rows('besoin_maquillage_oui', $fiche_projet_post_id) ) {
echo '<div class="boxneed"><h4 class="red">Maquillage</h4>';
while ( have_rows('besoin_maquillage_oui', $fiche_projet_post_id) ) {
the_row();
echo get_sub_field('nombre', $fiche_projet_post_id) .' comédien(s) | '. get_sub_field('type', $fiche_projet_post_id) .' | PAT '. get_sub_field('jour_pat', $fiche_projet_post_id) .' '. get_sub_field('horaire_pat', $fiche_projet_post_id) .'<br/>';
}
echo '</div>';
}
?>
<?php
if( have_rows('besoin_coiffure_oui', $fiche_projet_post_id) ) {
echo '<div class="boxneed"><h4 class="red">Maquillage</h4>';
while ( have_rows('besoin_coiffure_oui', $fiche_projet_post_id) ) {
the_row();
echo get_sub_field('nombre', $fiche_projet_post_id) .' comédien(s) | '. get_sub_field('type', $fiche_projet_post_id) .' | PAT '. get_sub_field('jour_pat', $fiche_projet_post_id) .' '. get_sub_field('horaire_pat', $fiche_projet_post_id) .'<br/>';
}
echo '</div>';
}
?>
<div style="clear: both;"></div>
</div>
</div>
<div class="page-break"></div>
<?php endwhile; endif; ?>
</div><!--end article-content-->
</article>
<!-- End Article -->
<?php } else {
echo '<h1>Désolé, l’accès à cette page est réservé aux administrateurs-trices de Kino Geneva!</h1>';
} // end if current user can... ?>
</body>
</html>