<?php
use Xmf\Request;
use XoopsModules\Tad_signup\Tad_signup_actions;
use XoopsModules\Tad_signup\Tad_signup_data;
require_once __DIR__ . '/header.php';
if (!$_SESSION['can_add']) {
redirect_header($_SERVER['PHP_SELF'], 3, "您沒有權限使用此功能");
}
$id = Request::getInt('id');
$action = Tad_signup_actions::get($id);
require_once XOOPS_ROOT_PATH . '/modules/tadtools/tcpdf/tcpdf.php';
$pdf = new TCPDF("P", "mm", "A4", true, 'UTF-8', false);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->SetAutoPageBreak(true, PDF_MARGIN_BOTTOM);
$pdf->setFontSubsetting(true);
$pdf->SetFont('droidsansfallback', '', 11, '', true);
$pdf->SetMargins(15, 15);
$pdf->AddPage();
$title = "{$action['title']}簽到表";
$pdf->SetFont('droidsansfallback', 'B', 24, '', true);
$pdf->MultiCell(190, 0, $title, 0, "C");
$pdf->SetFont('droidsansfallback', '', 16, '', true);
$pdf->Cell(40, 20, '活動日期:', 0, 0);
$pdf->Cell(150, 20, $action['action_date'], 0, 1);
$h = 15;
$maxh = 15;
$pdf->Cell(15, $h, '編號', 1, 0, 'C');
$pdf->Cell(40, $h, '姓名', 1, 0, 'C');
$pdf->Cell(35, $h, '飲食', 1, 0, 'C');
$pdf->Cell(100, $h, '簽名', 1, 1, 'C');
$signup = Tad_signup_data::get_all($action['id'], null, true, true);
$i = 1;
foreach ($signup as $signup_data) {
$pdf->MultiCell(15, $h, $i, 1, 'C', false, 0, '', '', true, 0, false, true, $maxh, 'M');
$pdf->MultiCell(40, $h, implode('、', $signup_data['tdc']['姓名']), 1, 'C', false, 0, '', '', true, 0, false, true, $maxh, 'M');
$pdf->MultiCell(35, $h, implode('、', $signup_data['tdc']['飲食']), 1, 'C', false, 0, '', '', true, 0, false, true, $maxh, 'M');
$pdf->MultiCell(100, $h, '', 1, 'C', false, 1, '', '', true, 0, false, true, $maxh, 'M');
$i++;
}
$pdf->Output("{$title}.pdf", 'I');