Merge remote branch 'origin/xorg/1.0.2/master' into xorg/master
[platal.git] / modules / xnetevents.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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
22 define('NB_PER_PAGE', 25);
23
24 class XnetEventsModule extends PLModule
25 {
26 function handlers()
27 {
28 return array(
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, 'user', NO_HTTPS),
32 '%grp/events/ical' => $this->make_hook('ical', AUTH_MDP, 'user', NO_HTTPS),
33 '%grp/events/edit' => $this->make_hook('edit', AUTH_MDP, 'groupadmin'),
34 '%grp/events/admin' => $this->make_hook('admin', AUTH_MDP, 'groupmember'),
35 );
36 }
37
38 function handler_events(&$page, $archive = null)
39 {
40 global $globals;
41
42 $page->changeTpl('xnetevents/index.tpl');
43 $action = null;
44 $archive = ($archive == 'archive' && may_update());
45
46 if (Post::has('del')) {
47 $action = 'del';
48 $eid = Post::v('del');
49 } elseif (Post::has('archive')) {
50 $action = 'archive';
51 $eid = Post::v('archive');
52 } elseif (Post::has('unarchive')) {
53 $action = 'unarchive';
54 $eid = Post::v('unarchive');
55 }
56
57 if (!is_null($action)) {
58 if (!may_update()) {
59 return PL_FORBIDDEN;
60 }
61 S::assert_xsrf_token();
62
63 $res = XDB::query("SELECT asso_id, short_name FROM group_events
64 WHERE eid = {?} AND asso_id = {?}",
65 $eid, $globals->asso('id'));
66
67 $tmp = $res->fetchOneRow();
68 if (!$tmp) {
69 return PL_FORBIDDEN;
70 }
71 }
72
73 if ($action == 'del') {
74 // deletes the event mailing aliases
75 if ($tmp[1]) {
76 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
77 XDB::execute("DELETE FROM virtual
78 WHERE type = 'evt' AND alias LIKE {?}",
79 $tmp[1] . $v . '%');
80 }
81 }
82
83 // deletes the event items
84 XDB::execute('DELETE FROM group_event_items
85 WHERE eid = {?}', $eid);
86
87 // deletes the event participants
88 XDB::execute('DELETE FROM group_event_participants
89 WHERE eid = {?}', $eid);
90
91 // deletes the event
92 XDB::execute('DELETE FROM group_events
93 WHERE eid = {?} AND asso_id = {?}',
94 $eid, $globals->asso('id'));
95
96 // delete the requests for payments
97 XDB::execute("DELETE FROM requests
98 WHERE type = 'paiements' AND data LIKE {?}",
99 PayReq::same_event($eid, $globals->asso('id')));
100 $globals->updateNbValid();
101 }
102
103 if ($action == 'archive') {
104 XDB::execute("UPDATE group_events
105 SET archive = 1
106 WHERE eid = {?} AND asso_id = {?}",
107 $eid, $globals->asso('id'));
108 }
109
110 if ($action == 'unarchive') {
111 XDB::execute("UPDATE group_events
112 SET archive = 0
113 WHERE eid = {?} AND asso_id = {?}",
114 $eid, $globals->asso('id'));
115 }
116
117 $page->assign('archive', $archive);
118 $evenements = XDB::iterator('SELECT e.*, LEFT(10, e.debut) AS first_day, LEFT(10, e.fin) AS last_day,
119 IF(e.deadline_inscription,
120 e.deadline_inscription >= LEFT(NOW(), 10),
121 1) AS inscr_open,
122 e.deadline_inscription,
123 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
124 FROM group_events AS e
125 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
126 WHERE asso_id = {?} AND archive = {?}
127 GROUP BY e.eid
128 ORDER BY inscr_open DESC, debut DESC',
129 S::i('uid'), $globals->asso('id'), $archive ? 1 : 0);
130
131 $evts = array();
132 $undisplayed_events = 0;
133 $this->load('xnetevents.inc.php');
134
135 while ($e = $evenements->next()) {
136 if (!is_member() && !may_update() && !$e['accept_nonmembre']) {
137 $undisplayed_events ++;
138 continue;
139 }
140
141 $e['show_participants'] = ($e['show_participants'] && (is_member() || may_update()));
142 $e['moments'] = XDB::fetchAllAssoc('SELECT titre, details, montant, ei.item_id, nb, ep.paid
143 FROM group_event_items AS ei
144 LEFT JOIN group_event_participants AS ep
145 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND ep.uid = {?})
146 WHERE ei.eid = {?}',
147 S::i('uid'), $e['eid']);
148
149 $e['topay'] = 0;
150 $e['paid'] = $e['moments'][0]['paid'];
151 foreach ($e['moments'] as $m) {
152 $e['topay'] += $m['nb'] * $m['montant'];
153 }
154
155 $query = XDB::query(
156 "SELECT amount
157 FROM payment_transactions AS t
158 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S::v('uid'));
159 $montants = $query->fetchColumn();
160
161 foreach ($montants as $m) {
162 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
163 $e['paid'] += trim($p);
164 }
165
166 make_event_date($e);
167
168 if (Env::has('updated') && $e['eid'] == Env::i('updated')) {
169 $page->assign('updated', $e);
170 }
171 $evts[] = $e;
172 }
173
174 $page->assign('evenements', $evts);
175 $page->assign('undisplayed_events', $undisplayed_events);
176 }
177
178 function handler_sub(&$page, $eid = null)
179 {
180 $this->load('xnetevents.inc.php');
181 $page->changeTpl('xnetevents/subscribe.tpl');
182
183 $evt = get_event_detail($eid);
184 if (is_null($evt)) {
185 return PL_NOT_FOUND;
186 }
187 if ($evt === false) {
188 global $globals, $platal;
189 $url = $globals->asso('sub_url');
190 if (empty($url)) {
191 $url = $platal->ns . 'subscribe';
192 }
193 $page->kill('Cet événement est reservé aux membres du groupe ' . $globals->asso('nom') .
194 '. Pour devenir membre, rends-toi sur la page de <a href="' . $url . '">demande d\'inscripton</a>.');
195 }
196
197 if (!$evt['inscr_open']) {
198 $page->kill('Les inscriptions pour cet événement sont closes');
199 }
200 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
201 $page->kill('Cet événement est fermé aux non-membres du groupe');
202 }
203
204 global $globals;
205 $res = XDB::query("SELECT stamp
206 FROM requests
207 WHERE type = 'paiements' AND data LIKE {?}",
208 PayReq::same_event($evt['eid'], $globals->asso('id')));
209 $page->assign('validation', $res->numRows());
210 $page->assign('event', $evt);
211
212 if (!Post::has('submit')) {
213 return;
214 } else {
215 S::assert_xsrf_token();
216 }
217
218 $moments = Post::v('moment', array());
219 $pers = Post::v('personnes', array());
220 $subs = array();
221
222 foreach ($moments as $j => $v) {
223 $subs[$j] = intval($v);
224
225 // retreive ohter field when more than one person
226 if ($subs[$j] == 2) {
227 if (!isset($pers[$j]) || !is_numeric($pers[$j]) || $pers[$j] < 0) {
228 $page->trigError("Tu dois choisir un nombre d'invités correct&nbsp;!");
229 return;
230 }
231 $subs[$j] = 1 + $pers[$j];
232 }
233 }
234
235 // impossible to unsubscribe if you already paid sthing
236 if (!array_sum($subs) && $evt['paid'] != 0) {
237 $page->trigError("Impossible de te désinscrire complètement " .
238 "parce que tu as fait un paiement par " .
239 "chèque ou par liquide. Contacte un " .
240 "administrateur du groupe si tu es sûr de " .
241 "ne pas venir.");
242 return;
243 }
244
245 // update actual inscriptions
246 $updated = false;
247 $total = 0;
248 $paid = $evt['paid'] ? $evt['paid'] : 0;
249 $telepaid= $evt['telepaid'] ? $evt['telepaid'] : 0;
250 foreach ($subs as $j => $nb) {
251 if ($nb >= 0) {
252 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
253 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
254 ON DUPLICATE KEY UPDATE nb = VALUES(nb), flags = VALUES(flags), paid = VALUES(paid)',
255 $eid, S::v('uid'), $j, $nb, (Env::has('notify_payment') ? 'notify_payment' : ''),
256 ($j == 1 ? $paid - $telepaid : 0));
257 $updated = $eid;
258 } else {
259 XDB::execute(
260 "DELETE FROM group_event_participants
261 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
262 $eid, S::v("uid"), $j);
263 $updated = $eid;
264 }
265 $total += $nb;
266 }
267 if ($updated !== false) {
268 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
269 subscribe_lists_event(S::i('uid'), $evt, ($total > 0 ? 1 : 0), 0);
270 }
271 $page->assign('event', get_event_detail($eid));
272 }
273
274 function handler_csv(&$page, $eid = null, $item_id = null)
275 {
276 $this->load('xnetevents.inc.php');
277
278 if (!is_numeric($item_id)) {
279 $item_id = null;
280 }
281
282 $evt = get_event_detail($eid, $item_id);
283 if (!$evt) {
284 return PL_NOT_FOUND;
285 }
286
287 pl_content_headers("text/x-csv");
288 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
289
290 $admin = may_update();
291
292 $tri = (Env::v('order') == 'alpha' ? UserFilter::sortByPromo() : UserFilter::sortByName());
293
294 $page->assign('participants',
295 get_event_participants($evt, $item_id, $tri));
296
297 $page->assign('admin', $admin);
298 $page->assign('moments', $evt['moments']);
299 $page->assign('money', $evt['money']);
300 $page->assign('telepayment', $evt['paiement_id']);
301 $page->assign('tout', !Env::v('item_id', false));
302 }
303
304 function handler_ical(&$page, $eid = null)
305 {
306 global $globals;
307
308 $this->load('xnetevents.inc.php');
309 $evt = get_event_detail($eid);
310 if (!$evt) {
311 return PL_FORBIDDEN;
312 }
313 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
314 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
315
316 foreach ($evt['moments'] as $m) {
317 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
318 }
319
320 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
321
322 require_once('ical.inc.php');
323 $page->assign('asso', $globals->asso());
324 $page->assign('timestamp', time());
325 $page->assign('admin', may_update());
326
327 if (may_update()) {
328 $page->assign('participants', get_event_participants($evt, null, UserFilter::sortByPromo()));
329 }
330 $page->register_function('display_ical', 'display_ical');
331 $page->assign_by_ref('e', $evt);
332
333 pl_content_headers("text/calendar");
334 }
335
336 function handler_edit(&$page, $eid = null)
337 {
338 global $globals;
339
340 // get eid if the the given one is a short name
341 if (!is_null($eid) && !is_numeric($eid)) {
342 $res = XDB::query("SELECT eid
343 FROM group_events
344 WHERE asso_id = {?} AND short_name = {?}",
345 $globals->asso('id'), $eid);
346 if ($res->numRows()) {
347 $eid = (int)$res->fetchOneCell();
348 }
349 }
350
351 // check the event is in our group
352 if (!is_null($eid)) {
353 $res = XDB::query("SELECT short_name
354 FROM group_events
355 WHERE eid = {?} AND asso_id = {?}",
356 $eid, $globals->asso('id'));
357 if ($res->numRows()) {
358 $infos = $res->fetchOneAssoc();
359 } else {
360 return PL_FORBIDDEN;
361 }
362 }
363
364 $page->changeTpl('xnetevents/edit.tpl');
365
366 $moments = range(1, 4);
367 $error = false;
368 $page->assign('moments', $moments);
369
370 if (Post::v('intitule')) {
371 S::assert_xsrf_token();
372
373 $this->load('xnetevents.inc.php');
374 $short_name = event_change_shortname($page, $eid,
375 $infos['short_name'],
376 Env::v('short_name', ''));
377 if ($short_name != Env::v('short_name')) {
378 $error = true;
379 }
380 $evt = array(
381 'eid' => $eid,
382 'asso_id' => $globals->asso('id'),
383 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
384 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
385 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
386 .':'.Post::v('deb_Minute').':00',
387 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
388 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
389 .':'.Post::v('fin_Minute').':00',
390 'short_name' => $short_name,
391 );
392
393 $trivial = array('intitule', 'descriptif', 'noinvite',
394 'show_participants', 'accept_nonmembre', 'uid');
395 foreach ($trivial as $k) {
396 $evt[$k] = Post::v($k);
397 }
398 if (!$eid) {
399 $evt['uid'] = S::v('uid');
400 }
401
402 if (Post::v('deadline')) {
403 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
404 . Post::v('inscr_Month').'-'
405 . Post::v('inscr_Day');
406 } else {
407 $evt['deadline_inscription'] = null;
408 }
409
410 // Store the modifications in the database
411 XDB::execute('INSERT INTO group_events (eid, asso_id, uid, intitule, paiement_id,
412 descriptif, debut, fin, show_participants,
413 short_name, deadline_inscription, noinvite,
414 accept_nonmembre)
415 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})
416 ON DUPLICATE KEY UPDATE asso_id = VALUES(asso_id), uid = VALUES(uid), intitule = VALUES(intitule),
417 paiement_id = VALUES(paiement_id), descriptif = VALUES(descriptif), debut = VALUES(debut),
418 fin = VALUES(fin), show_participants = VALUES(show_participants), short_name = VALUES(short_name),
419 deadline_inscription = VALUES(deadline_inscription), noinvite = VALUES(noinvite)',
420 $evt['eid'], $evt['asso_id'], $evt['uid'],
421 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
422 $evt['debut'], $evt['fin'], $evt['show_participants'],
423 $evt['short_name'], $evt['deadline_inscription'],
424 $evt['noinvite'], $evt['accept_nonmembre']);
425
426 // if new event, get its id
427 if (!$eid) {
428 $eid = XDB::insertId();
429 }
430
431 foreach ($moments as $i) {
432 if (Post::v('titre' . $i)) {
433 $nb_moments++;
434
435 $montant = strtr(Post::v('montant' . $i), ',', '.');
436 $money_defaut += (float)$montant;
437 XDB::execute('INSERT INTO group_event_items (eid, item_id, titre, details, montant)
438 VALUES ({?}, {?}, {?}, {?}, {?})
439 ON DUPLICATE KEY UPDATE titre = VALUES(titre), details = VALUES(details), montant = VALUES(montant)',
440 $eid, $i, Post::v('titre' . $i), Post::v('details' . $i), $montant);
441 } else {
442 XDB::execute('DELETE FROM group_event_items
443 WHERE eid = {?} AND item_id = {?}', $eid, $i);
444 }
445 }
446 // request for a new payment
447 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
448 $p = new PayReq(S::user(),
449 Post::v('intitule')." - ".$globals->asso('nom'),
450 Post::v('site'), $money_defaut,
451 Post::v('confirmation'), 0, 999,
452 $globals->asso('id'), $eid);
453 if ($p->accept()) {
454 $p->submit();
455 } else {
456 $page->assign('paiement_message', Post::v('confirmation'));
457 $page->assign('paiement_site', Post::v('site'));
458 $error = true;
459 }
460 }
461
462 // events with no sub-event: add a sub-event with no name
463 if ($nb_moments == 0) {
464 XDB::execute("INSERT INTO group_event_items
465 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
466 }
467
468 if (!$error) {
469 pl_redirect('events');
470 }
471 }
472
473 // get a list of all the payment for this asso
474 $res = XDB::iterator("SELECT id, text
475 FROM payments
476 WHERE asso_id = {?}", $globals->asso('id'));
477 $paiements = array();
478 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
479 $page->assign('paiements', $paiements);
480 }
481
482 // when modifying an old event retreive the old datas
483 if ($eid) {
484 $res = XDB::query(
485 "SELECT eid, intitule, descriptif, debut, fin, uid,
486 show_participants, paiement_id, short_name,
487 deadline_inscription, noinvite, accept_nonmembre
488 FROM group_events
489 WHERE eid = {?}", $eid);
490 $evt = $res->fetchOneAssoc();
491 // find out if there is already a request for a payment for this event
492 $res = XDB::query("SELECT stamp
493 FROM requests
494 WHERE type = 'paiements' AND data LIKE {?}",
495 PayReq::same_event($eid, $globals->asso('id')));
496 $stamp = $res->fetchOneCell();
497 if ($stamp) {
498 $evt['paiement_id'] = -2;
499 $evt['paiement_req'] = $stamp;
500 }
501 $page->assign('evt', $evt);
502 // get all the different moments infos
503 $res = XDB::iterator(
504 "SELECT item_id, titre, details, montant
505 FROM group_event_items AS ei
506 INNER JOIN group_events AS e ON(e.eid = ei.eid)
507 WHERE e.eid = {?}
508 ORDER BY item_id", $eid);
509 $items = array();
510 while ($item = $res->next()) {
511 $items[$item['item_id']] = $item;
512 }
513 $page->assign('items', $items);
514 }
515 $page->assign('url_ref', $eid);
516 }
517
518 function handler_admin(&$page, $eid = null, $item_id = null)
519 {
520 global $globals;
521
522 $this->load('xnetevents.inc.php');
523
524 $evt = get_event_detail($eid, $item_id);
525 if (!$evt) {
526 return PL_NOT_FOUND;
527 }
528
529 $page->changeTpl('xnetevents/admin.tpl');
530 if (!$evt['show_participants'] && !may_update()) {
531 return PL_FORBIDDEN;
532 }
533
534 if (may_update() && Post::v('adm')) {
535 S::assert_xsrf_token();
536
537 $member = User::getSilent(Post::v('mail'));
538 if (!$member) {
539 $page->trigError("Membre introuvable");
540 }
541
542 // change the price paid by a participant
543 if (Env::v('adm') == 'prix' && $member) {
544 $amount = strtr(Env::v('montant'), ',', '.');
545 XDB::execute("UPDATE group_event_participants
546 SET paid = paid + {?}
547 WHERE uid = {?} AND eid = {?} AND item_id = 1",
548 $amount, $member->uid, $evt['eid']);
549 subscribe_lists_event($member->uid, $evt, 1, $amount);
550 }
551
552 // change the number of personns coming with a participant
553 if (Env::v('adm') == 'nbs' && $member) {
554 $res = XDB::query("SELECT paid
555 FROM group_event_participants
556 WHERE uid = {?} AND eid = {?}",
557 $member->uid, $evt['eid']);
558
559 $paid = intval($res->fetchOneCell());
560 $nbs = Post::v('nb', array());
561
562 foreach ($nbs as $id => $nb) {
563 $nb = max(intval($nb), 0);
564 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
565 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
566 ON DUPLICATE KEY UPDATE nb = VALUES(nb), flags = VALUES(flags), paid = VALUES(paid)',
567 $evt['eid'], $member->uid, $id, $nb, '', ($id == 1 ? $paid : 0));
568 }
569
570 $res = XDB::query('SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
571 FROM group_event_participants
572 WHERE uid = {?} AND eid = {?}
573 GROUP BY uid',
574 $member->uid, $evt['eid']);
575 $u = $res->fetchOneAssoc();
576 if ($u['cnt'] == 1 && $paid == 0 && Post::v('cancel')) {
577 XDB::execute("DELETE FROM group_event_participants
578 WHERE uid = {?} AND eid = {?}",
579 $member->uid, $evt['eid']);
580 $u = 0;
581 subscribe_lists_event($member->uid, $evt, -1, $paid);
582 } else {
583 $u = $u['cnt'] ? $u['nb'] : null;
584 subscribe_lists_event($member->uid, $evt, ($u > 0 ? 1 : 0), $paid);
585 }
586 }
587
588 $evt = get_event_detail($eid, $item_id);
589 }
590
591 $page->assign_by_ref('evt', $evt);
592 $page->assign('tout', is_null($item_id));
593
594 if (count($evt['moments'])) {
595 $page->assign('moments', $evt['moments']);
596 }
597
598 if ($evt['paiement_id']) {
599 $infos = User::getBulkUsersWithUIDs(
600 XDB::fetchAllAssoc('SELECT t.uid, t.amount
601 FROM payment_transactions AS t
602 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
603 WHERE t.ref = {?} AND ep.uid IS NULL',
604 $evt['eid'], $evt['paiement_id']),
605 'uid', 'user');
606 $page->assign('oublis', count($infos));
607 $page->assign('oubliinscription', $infos);
608 }
609
610 $absents = User::getBulkUsersFromDB('SELECT p.uid
611 FROM group_event_participants AS p
612 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
613 AND p2.eid = p.eid
614 AND p2.nb != 0)
615 WHERE p.eid = {?} AND p2.eid IS NULL
616 GROUP BY p.uid', $evt['eid']);
617
618 $ofs = Env::i('offset');
619 $tot = (is_null($evt['nb_tot']) ? $evt['nb'] : $evt['nb_tot']);
620 $nbp = ceil($tot / NB_PER_PAGE);
621 if ($nbp > 1) {
622 $links = array();
623 if ($ofs) {
624 $links['précédent'] = $ofs - 1;
625 }
626 for ($i = 1 ; $i <= $nbp; $i++) {
627 $links[(string)$i] = $i - 1;
628 }
629 if ($ofs < $nbp - 1) {
630 $links['suivant'] = $ofs+1;
631 }
632 $page->assign('links', $links);
633 }
634
635 $page->assign('absents', $absents);
636 $page->assign('participants',
637 get_event_participants($evt, $item_id, UserFilter::sortByName(),
638 NB_PER_PAGE, $ofs * NB_PER_PAGE));
639 }
640 }
641
642 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
643 ?>