Small fix
[platal.git] / modules / xnetevents.php
CommitLineData
4f10a058 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
ed21e24a 22define('NB_PER_PAGE', 25);
23
4f10a058 24class XnetEventsModule extends PLModule
25{
26 function handlers()
27 {
28 return array(
d1ebc57a 29 '%grp/events' => $this->make_hook('events', AUTH_MDP),
30 '%grp/events/sub' => $this->make_hook('sub', AUTH_MDP),
31 '%grp/events/csv' => $this->make_hook('csv', AUTH_MDP),
11d8a183 32 '%grp/events/ical' => $this->make_hook('ical', AUTH_MDP),
d1ebc57a 33 '%grp/events/edit' => $this->make_hook('edit', AUTH_MDP),
34 '%grp/events/admin' => $this->make_hook('admin', AUTH_MDP),
4f10a058 35 );
36 }
37
f02eefd4 38 function handler_events(&$page, $archive = null)
4f10a058 39 {
40 global $globals;
41
f02eefd4 42 if ($archive == 'archive') {
43 $archive = true;
44 new_groupadmin_page('xnetevents/index.tpl');
45 } else {
46 $archive = false;
47 new_group_open_page('xnetevents/index.tpl');
48 }
4f10a058 49
f02eefd4 50 $action = null;
2b9e5fd3 51 if (Post::has('del')) {
f02eefd4 52 $action = 'del';
53 $eid = Post::v('del');
54 } elseif (Post::has('archive')) {
55 $action = 'archive';
56 $eid = Post::v('archive');
57 } elseif (Post::has('unarchive')) {
58 $action = 'unarchive';
59 $eid = Post::v('unarchive');
60 }
61
62 if (!is_null($action)) {
2b9e5fd3 63 if (!may_update()) {
64 return PL_NOT_ALLOWED;
65 }
66
08cce2ff 67 $res = XDB::query("SELECT asso_id, short_name FROM groupex.evenements
3cabafae 68 WHERE eid = {?} AND asso_id = {?}",
69 $eid, $globals->asso('id'));
2b9e5fd3 70
71 $tmp = $res->fetchOneRow();
72 if (!$tmp) {
73 return PL_NOT_ALLOWED;
74 }
f02eefd4 75 }
2b9e5fd3 76
f02eefd4 77 if ($action == 'del') {
2b9e5fd3 78 // deletes the event mailing aliases
79 if ($tmp[1]) {
08cce2ff 80 XDB::execute(
5070a22d 81 "DELETE FROM virtual WHERE type = 'evt' AND alias LIKE {?}",
82 $tmp[1].'-absents@%');
08cce2ff 83 XDB::execute(
5070a22d 84 "DELETE FROM virtual WHERE type = 'evt' AND alias LIKE {?}",
85 $tmp[1].'-participants@%');
2b9e5fd3 86 }
87
88 // deletes the event items
08cce2ff 89 XDB::execute("DELETE FROM groupex.evenements_items WHERE eid = {?}", $eid);
2b9e5fd3 90
91 // deletes the event participants
08cce2ff 92 XDB::execute("DELETE FROM groupex.evenements_participants
2b9e5fd3 93 WHERE eid = {?}", $eid);
94
95 // deletes the event
08cce2ff 96 XDB::execute("DELETE FROM groupex.evenements
2b9e5fd3 97 WHERE eid = {?} AND asso_id = {?}",
98 $eid, $globals->asso('id'));
99
100 // delete the requests for payments
101 require_once 'validations.inc.php';
08cce2ff 102 XDB::execute("DELETE FROM requests
2b9e5fd3 103 WHERE type = 'paiements' AND data LIKE {?}",
104 PayReq::same_event($eid, $globals->asso('id')));
105 }
106
f02eefd4 107 if ($action == 'archive') {
108 XDB::execute("UPDATE groupex.evenements
109 SET archive = 1
110 WHERE eid = {?} AND asso_id = {?}",
111 $eid, $globals->asso('id'));
112 }
113
114 if ($action == 'unarchive') {
115 XDB::execute("UPDATE groupex.evenements
116 SET archive = 0
117 WHERE eid = {?} AND asso_id = {?}",
118 $eid, $globals->asso('id'));
119 }
120
121 $page->assign('archive', $archive);
4f10a058 122 $page->assign('admin', may_update());
123
08cce2ff 124 $evenements = XDB::iterator(
d6d580ec 125 "SELECT e.*, LEFT(10, e.debut) AS debut_day, LEFT(10, e.fin) AS fin_day,
bd46a8e4 126 IF(e.deadline_inscription, e.deadline_inscription >= LEFT(NOW(), 10),
d6d580ec 127 1) AS inscr_open, e.deadline_inscription,
128 u.nom, u.prenom, u.promo, a.alias,
129 MAX(ep.nb) AS inscrit, MAX(ep.paid) AS paid
130 FROM groupex.evenements AS e
4f10a058 131 INNER JOIN x4dat.auth_user_md5 AS u ON u.user_id = e.organisateur_uid
d6d580ec 132 INNER JOIN x4dat.aliases AS a ON (a.type = 'a_vie' AND a.id = u.user_id)
4f10a058 133 LEFT JOIN groupex.evenements_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
f02eefd4 134 WHERE asso_id = {?}
135 AND archive = " . ($archive ? "1 " : "0 ")
3cabafae 136 . (is_member() || may_update() ? "" : " AND accept_nonmembre != 0 ")
137 . "GROUP BY e.eid
cb24457f 138 ORDER BY inscr_open DESC, debut DESC", S::v('uid'), $globals->asso('id'));
4f10a058 139
140 $evts = array();
d6d580ec 141
4f10a058 142 while ($e = $evenements->next()) {
3cabafae 143 $e['show_participants'] = ($e['show_participants'] && (is_member() || may_update()));
08cce2ff 144 $res = XDB::query(
4f10a058 145 "SELECT titre, details, montant, ei.item_id, nb
146 FROM groupex.evenements_items AS ei
147 LEFT JOIN groupex.evenements_participants AS ep
148 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND uid = {?})
149 WHERE ei.eid = {?}",
cab08090 150 S::v('uid'), $e['eid']);
d6d580ec 151 $e['moments'] = $res->fetchAllAssoc();
152
153 $e['topay'] = 0;
154 foreach ($e['moments'] as $m) {
155 $e['topay'] += $m['nb'] * $m['montant'];
156 }
157
08cce2ff 158 $query = XDB::query(
4f10a058 159 "SELECT montant
160 FROM {$globals->money->mpay_tprefix}transactions AS t
cab08090 161 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S::v('uid'));
4f10a058 162 $montants = $query->fetchColumn();
d6d580ec 163
4f10a058 164 foreach ($montants as $m) {
d6d580ec 165 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
4f10a058 166 $e['paid'] += trim($p);
167 }
d6d580ec 168
4f10a058 169 $evts[] = $e;
170 }
171
172 $page->assign('evenements', $evts);
173 $page->assign('is_member', is_member());
174 }
175
d6d580ec 176 function handler_sub(&$page, $eid = null)
177 {
352fb101 178 require_once dirname(__FILE__).'/xnetevents/xnetevents.inc.php';
d6d580ec 179
3cabafae 180 new_group_open_page('xnetevents/subscribe.tpl');
d6d580ec 181
182 $evt = get_event_detail($eid);
183 if (!$evt) {
184 return PL_NOT_FOUND;
185 }
186
187 if (!$evt['inscr_open']) {
188 $page->kill('Les inscriptions pour cet événement sont closes');
189 }
3cabafae 190 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
191 $page->kill('Cet événement est fermé aux non-membres du groupe');
192 }
d6d580ec 193
194 $page->assign('event', $evt);
195
196 if (!Post::has('submit')) {
197 return;
198 }
199
5e2307dc 200 $moments = Post::v('moment', array());
201 $pers = Post::v('personnes', array());
d6d580ec 202 $subs = array();
203
204 foreach ($moments as $j => $v) {
205 $subs[$j] = intval($v);
206
207 // retreive ohter field when more than one person
208 if ($subs[$j] == 2) {
209 if (!isset($pers[$j]) || !is_numeric($pers[$j])
210 || $pers[$j] < 0)
211 {
212 $page->trig('Tu dois choisir un nombre d\'invités correct !');
213 return;
214 }
215 $subs[$j] = 1 + $pers[$j];
216 }
217 }
218
219 // impossible to unsubscribe if you already paid sthing
220 if (array_sum($subs) && $evt['paid'] != 0) {
221 $page->trig("Impossible de te désinscrire complčtement ".
222 "parce que tu as fait un paiement par ".
223 "chčque ou par liquide. Contacte un ".
224 "administrateur du groupe si tu es sűr de ".
225 "ne pas venir");
226 return;
227 }
228
229 // update actual inscriptions
230 foreach ($subs as $j => $nb) {
231 if ($nb > 0) {
08cce2ff 232 XDB::execute(
d6d580ec 233 "REPLACE INTO groupex.evenements_participants
234 VALUES ({?}, {?}, {?}, {?}, {?})",
cab08090 235 $eid, S::v('uid'), $j, $nb, $evt['paid']);
5070a22d 236 $page->assign('updated', true);
d6d580ec 237 } else {
08cce2ff 238 XDB::execute(
d6d580ec 239 "DELETE FROM groupex.evenements_participants
240 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
cab08090 241 $eid, S::v("uid"), $j);
5070a22d 242 $page->assign('updated', true);
d6d580ec 243 }
244 }
245
246 $page->assign('event', get_event_detail($eid));
247 }
248
4f10a058 249 function handler_csv(&$page, $eid = null, $item_id = null)
250 {
352fb101 251 require_once dirname(__FILE__).'/xnetevents/xnetevents.inc.php';
4f10a058 252
bd46a8e4 253 if (!is_numeric($item_id)) {
254 $item_id = null;
255 }
256
4f10a058 257 $evt = get_event_detail($eid, $item_id);
258 if (!$evt) {
259 return PL_NOT_FOUND;
260 }
261
dba106f6 262 header('Content-type: text/x-csv; encoding=iso-8859-1');
4f10a058 263 header('Pragma: ');
264 header('Cache-Control: ');
265
801fcad8 266 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
4f10a058 267
268 $admin = may_update();
269
5e2307dc 270 $tri = (Env::v('order') == 'alpha' ? 'promo, nom, prenom' : 'nom, prenom, promo');
4f10a058 271
ed21e24a 272 $page->assign('participants',
273 get_event_participants($evt, $item_id, $tri));
4f10a058 274
4f10a058 275 $page->assign('admin', $admin);
276 $page->assign('moments', $evt['moments']);
277 $page->assign('money', $evt['money']);
5e2307dc 278 $page->assign('tout', !Env::v('item_id', false));
4f10a058 279 }
bd46a8e4 280
11d8a183 281 function handler_ical(&$page, $eid = null)
282 {
283 global $globals;
284
285 require_once dirname(__FILE__).'/xnetevents/xnetevents.inc.php';
286 $evt = get_event_detail($eid);
287 if (!$evt) {
288 return PL_NOT_FOUND;
289 }
290 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
291 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
292
99544d53 293 foreach ($evt['moments'] as $m) {
294 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
295 }
296
11d8a183 297 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
298
99544d53 299 require_once('ical.inc.php');
11d8a183 300 $page->assign('asso', $globals->asso());
301 $page->assign('timestamp', time());
99544d53 302 $page->assign('admin', may_update());
303
304 if (may_update()) {
305 $page->assign('participants', get_event_participants($evt, null, 'promo, nom, prenom'));
306 }
11d8a183 307 $page->register_function('display_ical', 'display_ical');
308 $page->assign_by_ref('e', $evt);
309
310 header('Content-Type: text/calendar; charset=utf-8');
311 }
312
bd46a8e4 313 function handler_edit(&$page, $eid = null)
314 {
315 global $globals;
316
5070a22d 317 // check the event is in our group
bd46a8e4 318 if (!is_null($eid)) {
08cce2ff 319 $res = XDB::query("SELECT short_name, asso_id
bd46a8e4 320 FROM groupex.evenements
321 WHERE eid = {?}", $eid);
322 $infos = $res->fetchOneAssoc();
323 if ($infos['asso_id'] != $globals->asso('id')) {
324 return PL_NOT_ALLOWED;
325 }
326 }
327
5070a22d 328 new_groupadmin_page('xnetevents/edit.tpl');
bd46a8e4 329
5070a22d 330 $moments = range(1, 4);
331 $page->assign('moments', $moments);
bd46a8e4 332
5e2307dc 333 if (Post::v('intitule')) {
5070a22d 334 require_once dirname(__FILE__).'/xnetevents/xnetevents.inc.php';
335 $short_name = event_change_shortname($page, $infos['short_name'],
5e2307dc 336 Env::v('short_name', ''));
5070a22d 337
338 $evt = array(
339 'eid' => $eid,
340 'asso_id' => $globals->asso('id'),
5e2307dc 341 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
342 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
343 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
344 .':'.Post::v('deb_Minute').':00',
345 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
346 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
347 .':'.Post::v('fin_Minute').':00',
5070a22d 348 'short_name' => $short_name,
349 );
350
351 $trivial = array('intitule', 'descriptif', 'noinvite',
25412aa4 352 'show_participants', 'accept_nonmembre', 'organisateur_uid');
5070a22d 353 foreach ($trivial as $k) {
5e2307dc 354 $evt[$k] = Post::v($k);
bd46a8e4 355 }
25412aa4 356 if (!$eid) {
357 $evt['organisateur_uid'] = S::v('uid');
358 }
bd46a8e4 359
5e2307dc 360 if (Post::v('deadline')) {
361 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
362 . Post::v('inscr_Month').'-'
363 . Post::v('inscr_Day');
5070a22d 364 } else {
365 $evt['deadline_inscription'] = null;
9ece1588 366 }
bd46a8e4 367
368 // Store the modifications in the database
08cce2ff 369 XDB::execute('REPLACE INTO groupex.evenements
bd46a8e4 370 SET eid={?}, asso_id={?}, organisateur_uid={?}, intitule={?},
5070a22d 371 paiement_id = {?}, descriptif = {?}, debut = {?},
372 fin = {?}, show_participants = {?}, short_name = {?},
3cabafae 373 deadline_inscription = {?}, noinvite = {?},
374 accept_nonmembre = {?}',
5070a22d 375 $evt['eid'], $evt['asso_id'], $evt['organisateur_uid'],
376 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
377 $evt['debut'], $evt['fin'], $evt['show_participants'],
378 $evt['short_name'], $evt['deadline_inscription'],
3cabafae 379 $evt['noinvite'], $evt['accept_nonmembre']);
bd46a8e4 380
381 // if new event, get its id
382 if (!$eid) {
5070a22d 383 $eid = mysql_insert_id();
bd46a8e4 384 }
385
5070a22d 386 $nb_moments = 0;
bd46a8e4 387 $money_defaut = 0;
388
389 foreach ($moments as $i) {
5e2307dc 390 if (Post::v('titre'.$i)) {
bd46a8e4 391 $nb_moments++;
5070a22d 392
5e2307dc 393 $montant = strtr(Post::v('montant'.$i), ',', '.');
5070a22d 394 $money_defaut += (float)$montant;
08cce2ff 395 XDB::execute("
bd46a8e4 396 REPLACE INTO groupex.evenements_items
397 VALUES ({?}, {?}, {?}, {?}, {?})",
5e2307dc 398 $eid, $i, Post::v('titre'.$i),
399 Post::v('details'.$i), $montant);
bd46a8e4 400 } else {
08cce2ff 401 XDB::execute("DELETE FROM groupex.evenements_items
bd46a8e4 402 WHERE eid = {?} AND item_id = {?}", $eid, $i);
403 }
404 }
405
406 // request for a new payment
5e2307dc 407 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
bd46a8e4 408 require_once 'validations.inc.php';
cab08090 409 $p = new PayReq(S::v('uid'),
5e2307dc 410 Post::v('intitule')." - ".$globals->asso('nom'),
411 Post::v('site'), $money_defaut,
412 Post::v('confirmation'), 0, 999,
bd46a8e4 413 $globals->asso('id'), $eid);
414 $p->submit();
415 }
416
417 // events with no sub-event: add a sub-event with no name
418 if ($nb_moments == 0) {
08cce2ff 419 XDB::execute("INSERT INTO groupex.evenements_items
bd46a8e4 420 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
421 }
bd46a8e4 422
5070a22d 423 if (is_null($evt['eid'])) {
25412aa4 424 pl_redirect('events');
5070a22d 425 }
bd46a8e4 426 }
427
428 // get a list of all the payment for this asso
08cce2ff 429 $res = XDB::iterator("SELECT id, text
bd46a8e4 430 FROM {$globals->money->mpay_tprefix}paiements
431 WHERE asso_id = {?}", $globals->asso('id'));
432 $paiements = array();
433 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
434 $page->assign('paiements', $paiements);
435 }
436
437 // when modifying an old event retreive the old datas
438 if ($eid) {
08cce2ff 439 $res = XDB::query(
25412aa4 440 "SELECT eid, intitule, descriptif, debut, fin, organisateur_uid,
441 show_participants, paiement_id, short_name,
442 deadline_inscription, noinvite, accept_nonmembre
bd46a8e4 443 FROM groupex.evenements
444 WHERE eid = {?}", $eid);
445 $evt = $res->fetchOneAssoc();
446 // find out if there is already a request for a payment for this event
447 require_once 'validations.inc.php';
08cce2ff 448 $res = XDB::query("SELECT stamp FROM requests
bd46a8e4 449 WHERE type = 'paiements' AND data LIKE {?}",
450 PayReq::same_event($eid, $globals->asso('id')));
451 $stamp = $res->fetchOneCell();
452 if ($stamp) {
453 $evt['paiement_id'] = -2;
454 $evt['paiement_req'] = $stamp;
455 }
456 $page->assign('evt', $evt);
457 // get all the different moments infos
08cce2ff 458 $res = XDB::iterator(
bd46a8e4 459 "SELECT item_id, titre, details, montant
460 FROM groupex.evenements_items AS ei
461 INNER JOIN groupex.evenements AS e ON(e.eid = ei.eid)
462 WHERE e.eid = {?}
463 ORDER BY item_id", $eid);
464 $items = array();
465 while ($item = $res->next()) {
466 $items[$item['item_id']] = $item;
467 }
468 $page->assign('items', $items);
469 }
470 }
471
472 function handler_admin(&$page, $eid = null, $item_id = null)
473 {
474 global $globals;
475
352fb101 476 require_once dirname(__FILE__).'/xnetevents/xnetevents.inc.php';
bd46a8e4 477
478 $evt = get_event_detail($eid, $item_id);
bd46a8e4 479 if (!$evt) {
480 return PL_NOT_FOUND;
481 }
482
483 if ($evt['show_participants']) {
ed21e24a 484 new_group_page('xnetevents/admin.tpl');
bd46a8e4 485 } else {
ed21e24a 486 new_groupadmin_page('xnetevents/admin.tpl');
bd46a8e4 487 }
488
5e2307dc 489 if (may_update() && Post::v('adm')) {
490 $member = get_infos(Post::v('mail'));
ed21e24a 491 if (!$member) {
492 $page->trig("Membre introuvable");
bd46a8e4 493 }
bd46a8e4 494
ed21e24a 495 // change the price paid by a participant
5e2307dc 496 if (Env::v('adm') == 'prix' && $member) {
08cce2ff 497 XDB::execute("UPDATE groupex.evenements_participants
ed21e24a 498 SET paid = IF(paid + {?} > 0, paid + {?}, 0)
499 WHERE uid = {?} AND eid = {?}",
5e2307dc 500 strtr(Env::v('montant'), ',', '.'),
501 strtr(Env::v('montant'), ',', '.'),
ed21e24a 502 $member['uid'], $eid);
503 }
bd46a8e4 504
ed21e24a 505 // change the number of personns coming with a participant
5e2307dc 506 if (Env::v('adm') == 'nbs' && $member) {
08cce2ff 507 $res = XDB::query("SELECT paid
ed21e24a 508 FROM groupex.evenements_participants
509 WHERE uid = {?} AND eid = {?}",
510 $member['uid'], $eid);
511
512 $paid = intval($res->fetchOneCell());
5e2307dc 513 $nbs = Post::v('nb', array());
ed21e24a 514
515 foreach ($nbs as $id => $nb) {
5070a22d 516 $nb = max(intval($nb), 0);
ed21e24a 517
518 if ($nb) {
08cce2ff 519 XDB::execute("REPLACE INTO groupex.evenements_participants
ed21e24a 520 VALUES ({?}, {?}, {?}, {?}, {?})",
521 $eid, $member['uid'], $id, $nb, $paid);
522 } else {
08cce2ff 523 XDB::execute("DELETE FROM groupex.evenements_participants
ed21e24a 524 WHERE uid = {?} AND eid = {?} AND item_id = {?}",
525 $member['uid'], $eid, $id);
526 }
bd46a8e4 527 }
ed21e24a 528
08cce2ff 529 $res = XDB::query("SELECT uid FROM groupex.evenements_participants
ed21e24a 530 WHERE uid = {?} AND eid = {?}",
531 $member['uid'], $eid);
bd46a8e4 532 $u = $res->fetchOneCell();
ed21e24a 533 subscribe_lists_event($u, $member['uid'], $evt);
bd46a8e4 534 }
ed21e24a 535
bd46a8e4 536 $evt = get_event_detail($eid, $item_id);
537 }
538
ed21e24a 539 $page->assign('admin', may_update());
bd46a8e4 540 $page->assign('evt', $evt);
1f3362a3 541 $page->assign('tout', is_null($item_id));
bd46a8e4 542
ed21e24a 543 if (count($evt['moments'])) {
544 $page->assign('moments', $evt['moments']);
545 }
bd46a8e4 546
5e2307dc 547 $tri = (Env::v('order') == 'alpha' ? 'promo, nom, prenom' : 'nom, prenom, promo');
1f3362a3 548 $whereitemid = is_null($item_id) ? '' : "AND ep.item_id = $item_id";
08cce2ff 549 $res = XDB::iterRow(
ed21e24a 550 'SELECT UPPER(SUBSTRING(IF(u.nom IS NULL, m.nom,
551 IF(u.nom_usage<>"", u.nom_usage, u.nom)), 1, 1)),
552 COUNT(DISTINCT ep.uid)
bd46a8e4 553 FROM groupex.evenements_participants AS ep
554 INNER JOIN groupex.evenements AS e ON (ep.eid = e.eid)
555 LEFT JOIN groupex.membres AS m ON ( ep.uid = m.uid AND e.asso_id = m.asso_id)
556 LEFT JOIN auth_user_md5 AS u ON ( u.user_id = ep.uid )
557 WHERE ep.eid = {?} '.$whereitemid.'
ed21e24a 558 GROUP BY UPPER(SUBSTRING(IF(u.nom IS NULL,m.nom,u.nom), 1, 1))', $eid);
bd46a8e4 559
560 $alphabet = array();
561 $nb_tot = 0;
562 while (list($char, $nb) = $res->next()) {
563 $alphabet[ord($char)] = $char;
564 $nb_tot += $nb;
5e2307dc 565 if (Env::has('initiale') && $char == strtoupper(Env::v('initiale'))) {
bd46a8e4 566 $tot = $nb;
567 }
568 }
569 ksort($alphabet);
570 $page->assign('alphabet', $alphabet);
571
5e2307dc 572 $ofs = Env::i('offset');
573 $tot = Env::v('initiale') ? $tot : $nb_tot;
bd46a8e4 574 $nbp = intval(($tot-1)/NB_PER_PAGE);
575 $links = array();
576 if ($ofs) {
577 $links['précédent'] = $ofs-1;
578 }
579 for ($i = 0; $i <= $nbp; $i++) {
580 $links[(string)($i+1)] = $i;
581 }
582 if ($ofs < $nbp) {
583 $links['suivant'] = $ofs+1;
584 }
585 if (count($links)>1) {
586 $page->assign('links', $links);
587 }
588
bd46a8e4 589 if ($evt['paiement_id']) {
08cce2ff 590 $res = XDB::iterator(
bd46a8e4 591 "SELECT IF(u.nom_usage<>'', u.nom_usage, u.nom) AS nom, u.prenom,
592 u.promo, a.alias AS email, t.montant
593 FROM {$globals->money->mpay_tprefix}transactions AS t
594 INNER JOIN auth_user_md5 AS u ON(t.uid = u.user_id)
595 INNER JOIN aliases AS a ON (a.id = t.uid AND a.type='a_vie' )
596 LEFT JOIN groupex.evenements_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
597 WHERE t.ref = {?} AND ep.uid IS NULL",
598 $evt['eid'], $evt['paiement_id']);
ed21e24a 599 $page->assign('oublis', $res->total());
600 $page->assign('oubliinscription', $res);
bd46a8e4 601 }
602
ed21e24a 603 $page->assign('participants',
604 get_event_participants($evt, $item_id, $tri,
605 "LIMIT ".($ofs*NB_PER_PAGE).", ".NB_PER_PAGE));
bd46a8e4 606 }
4f10a058 607}
608
609?>