-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-impression-besoins-maquillage-coiffure.php
242 lines (204 loc) · 7.38 KB
/
page-impression-besoins-maquillage-coiffure.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
<?php
/**
* Un template pour imprimer les besoins des 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 besoins 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=Raleway" rel="stylesheet">
<link rel="stylesheet" href="<?php echo $url ?>/css/dev/31-print.css">
</head>
<body>
<?php
//current url
$current_url = home_url(add_query_arg(array(),$wp->request));
$css_url = get_stylesheet_directory_uri();
if ( current_user_can( "read") ) {
?>
<!-- Begin Article -->
<article>
<div class="article-content">
<?php
//init du tableau des besoins par date
$group_2_display = array(
//dates 2017
'mardi 10 janvier' => array(),
'mercredi 11 janvier' => array(),
'vendredi 13 janvier' => array(),
'samedi 14 janvier' => array(),
'lundi 16 janvier' => array(),
'mardi 17 janvier' => array(),
//dates 2018
'dimanche 14 janvier' => array(),
'lundi 15 janvier' => array(),
'mardi 16 janvier' => array(),
'mercredi 17 janvier' => array(),
'jeudi 18 janvier' => array(),
'vendredi 19 janvier' => array(),
'samedi 20 janvier' => array(),
'dimanche 21 janvier' => array(),
'lundi 22 janvier' => array(),
'mardi 23 janvier' => array(),
'mercredi 24 janvier' => array(),
'jeudi 25 janvier' => array(),
'vendredi 26 janvier' => array(),
);
//recherche des groupes
if ( bp_has_groups('per_page=50') ) {
while ( bp_groups() ) {
bp_the_group();
//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'));
$sessions = current( ( array_intersect( $sessions_terms,$user_terms ) ) );
//test si besoin en maquillage ou la coiffure
if( get_field('besoin_maquillage', $fiche_projet_post_id) || get_field('besoin_coiffure', $fiche_projet_post_id) ){
$besoins = array('maquillage'=>'besoin_maquillage_oui','coiffure'=>'besoin_coiffure_oui');
//classement par date PAT pour chaque besoin
foreach($besoins as $nom => $besoin){
if( have_rows($besoin, $fiche_projet_post_id) ) {
while ( have_rows($besoin, $fiche_projet_post_id) ) {
the_row();
$date_PAT = get_sub_field('jour_pat', $fiche_projet_post_id);
$heure_PAT = get_sub_field('horaire_pat', $fiche_projet_post_id);
$type = get_sub_field('type', $fiche_projet_post_id);
$nb = get_sub_field('nombre', $fiche_projet_post_id);
$heure_pat_comp = substr($heure_PAT, 0, 2);
//test sur les lieus de tournage définis
if( have_rows('lieux_de_tournage', $fiche_projet_post_id) ) {
$adresses_tournage = array();
while ( have_rows('lieux_de_tournage', $fiche_projet_post_id) ) {
the_row();
$date_tournage = get_sub_field('jours', $fiche_projet_post_id);
$heure_debut = substr(get_sub_field('tournage_debut', $fiche_projet_post_id),0,2);
$heure_fin = substr(get_sub_field('tournage_fin', $fiche_projet_post_id),0,2);
if($date_PAT == $date_tournage && $heure_pat_comp >= $heure_debut && $heure_pat_comp <= $heure_fin){
if(get_sub_field('adresse', $fiche_projet_post_id)){
$adresses_tournage[] = get_sub_field('adresse', $fiche_projet_post_id)['address'];
}
else {
$adresses_tournage[] = '';
}
}
}
}
//tableau des données
$group_2_display[$date_PAT][] = array(
'heure_PAT' => $heure_PAT,
'adresses_tournage' => $adresses_tournage,
'group_id' => $group_id,
'fiche_projet_post_id' => $fiche_projet_post_id,
'id_real' => $id_real,
'nom_real' => bp_core_get_user_displayname($id_real),
'email_real' => xprofile_get_field_data('e-mail', $id_real),
'tel_real' => xprofile_get_field_data('Téléphone', $id_real),
'sessions' => $sessions,
'group_name' => bp_get_group_name(),
'type' => $nom .': '. $type,
'nb' => $nb,
);
}
}
}
}
}
}
/*
echo '<pre>';
print_r($group_2_display);
echo '</pre>';
*/
?>
<div class="bandeau no-print">
<span class="bg bggreen">Besoins</span>
<br/>
<span class="bg bgblack" style="margin-left: 47px;">maquillage / coiffure</span>
</div>
<?php
foreach($group_2_display as $date => $entry){
if(!empty($entry)){ ?>
<div class="profile clearfix print-profile">
<div class="bandeau no-screen">
<span class="bg bggreen">Besoins</span>
<br/>
<span class="bg bgblack" style="margin-left: 47px;">maquillage / coiffure</span>
</div>
<?php
//echo $projet['sessions'];
echo '<h1 class="green">'. $date .'</h1>';
uasort($entry, function($a, $b) {
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
});
?>
<table>
<tr>
<th style="width: 25mm">PAT</th>
<th style="width: 45mm">Détails</th>
<th style="width: 65mm">Film</th>
<th style="width: 65mm">Lieu</th>
</tr>
<?php
foreach($entry as $projet){ ?>
<tr style="page-break-inside: avoid;">
<?php
//PAT
echo '<td><div class="strong">'. $projet['heure_PAT'] .'</div></td>';
//Détails
echo '<td><div class="strong">'. $projet['nb'] .' comédiens</div>'. $projet['type'] .'</td>';
//Film
?>
<td>
<div class="strong"><?php echo $projet['group_name']; ?></div>
<div><?php echo $projet['nom_real']; ?></div>
<div><?php echo $projet['email_real'] ?></div>
<div><?php echo $projet['tel_real'] ?></div>
<div><?php echo $projet['sessions'] ?></div>
</td>
<td>
<?php
//Lieu
foreach($projet['adresses_tournage'] as $adresse_tournage){
echo $adresse_tournage;
echo '<br>';
}
?>
</td>
</tr>
<?php
} // end foreach $entry ?>
</table>
<div class="footer no-screen">
</div>
</div>
<?php // fin de profile
}
}?>
</div><!--end article-content-->
</article>
<!-- End Article -->
<?php } else {
echo '<h1>Désolé, l’accès à cette page est réservé aux membres Kino Geneva!</h1>';
}
// end if current user can... ?>
</body>
</html>