From a507867b187fd7621599e80a15724e670e737628 Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Sat, 14 Dec 2013 21:29:48 +0100 Subject: [PATCH] Add email field in the CSV export of the participants list of X.net events Signed-off-by: Nicolas Iooss --- modules/xnetevents.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.1.4