noalyss
Version-9
include
export
export_card_pdf.php
Go to the documentation of this file.
1
<?php
2
/***
3
* @file
4
* @brief output a PDF with card info
5
*
6
*/
7
try
{
8
$http
=new \HttpInput();
9
$card_id
=
$http
->get(
"card_id"
);
10
}
catch
(\Exception
$e
) {
11
echo
$e
->getMessage();
12
die();
13
}
14
15
$card_pdf
=new \Card_PDF(
$card_id
);
16
$card_pdf
->export();
$http
$http
Definition:
action.common.inc.php:33
$card_pdf
catch(\Exception $e) $card_pdf
Definition:
export_card_pdf.php:15
$card_id
$card_id
Definition:
export_card_pdf.php:9
$e
$e
Definition:
result_cat_card_summary.php:26