['regexp' => '/^[a-z0-9]+$/']]); $poll = $pollService->findById($poll_id); } if (!$poll) { $smarty->assign('error', __('Error', 'This poll doesn\'t exist !')); $smarty->display('error.tpl'); exit; } $slots = $pollService->allSlotsByPollId($poll_id); $votes = $pollService->allVotesByPollId($poll_id); // CSV header if ($poll->format === 'D') { $titles_line = ','; $moments_line = ','; foreach ($slots as $slot) { $title = Utils::csvEscape(strftime($date_format['txt_date'], $slot->title)); $moments = explode(',', $slot->moments); $titles_line .= str_repeat($title . ',', count($moments)); $moments_line .= implode(',', array_map('\Framadate\Utils::csvEscape', $moments)) . ','; } echo $titles_line . "\r\n"; echo $moments_line . "\r\n"; } else { echo ','; foreach ($slots as $slot) { echo Utils::markdown($slot->title, true) . ','; } echo "\r\n"; } // END - CSV header // Vote lines foreach ($votes as $vote) { echo Utils::csvEscape($vote->name) . ','; $choices = str_split($vote->choices); foreach ($choices as $choice) { switch ($choice) { case 0: $text = __('Generic', 'No'); break; case 1: $text = __('Generic', 'Ifneedbe'); break; case 2: $text = __('Generic', 'Yes'); break; default: $text = 'unkown'; } echo Utils::csvEscape($text); echo ','; } echo "\r\n"; } // END - Vote lines // HTTP headers $content = ob_get_clean(); $filesize = strlen($content); $filename = Utils::cleanFilename($poll->title) . '.csv'; header('Content-Type: text/csv; charset=utf-8'); header('Content-Length: ' . $filesize); header('Content-Disposition: attachment; filename="' . $filename . '"'); header('Cache-Control: max-age=10'); // END - HTTP headers echo $content;