noalyss
Version-9
Toggle main menu visibility
Main Page
Related Pages
Packages
Package List
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
$
a
s
u
v
Files
File List
Globals
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
p
r
s
t
u
w
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Typedefs
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Pages
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