From: Nicolas Iooss Date: Sat, 14 Dec 2013 20:29:48 +0000 (+0100) Subject: Add email field in the CSV export of the participants list of X.net events X-Git-Tag: xorg/1.1.11~16 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=a507867b187fd7621599e80a15724e670e737628;p=platal.git Add email field in the CSV export of the participants list of X.net events Signed-off-by: Nicolas Iooss --- diff --git a/modules/xnetevents.php b/modules/xnetevents.php index 6fca7f3..fd64cf1 100644 --- a/modules/xnetevents.php +++ b/modules/xnetevents.php @@ -371,7 +371,7 @@ class XnetEventsModule extends PLModule $all = !Env::v('item_id', false); $participants = get_event_participants($evt, $item_id, $tri); - $title = 'Nom;Prénom;Promotion'; + $title = 'Nom;Prénom;Promotion;Email'; if ($admin) { $title .=';Société;Poste'; } @@ -394,7 +394,7 @@ class XnetEventsModule extends PLModule if ($participants) { foreach ($participants as $participant) { $user = $participant['user']; - $line = $user->lastName() . ';' . $user->firstName() . ';' . $user->promo(); + $line = $user->lastName() . ';' . $user->firstName() . ';' . $user->promo() . ';' . $user->bestEmail(); if ($admin && $user->hasProfile()) { $line .= ';' . $user->profile()->getMainJob()->company->name . ';' . $user->profile()->getMainJob()->description; } else {