admin
doz
html2pdf_v4.03
htmlpurifier-4.10.0
images
prints
decoders
doc
filters
font
makefont
FAQ.htm
LICENSE
NOTICE
Praxisstellen.doc
Praxisstellen_neu.doc
Zustimmung.doc
ali.php
as_utf_class.php
changelog.txt
class.fpdf_table.php
class.multicelltag.php
class.string_tags.php
credits.txt
demo.php
ex.pdf
ex.php
fpdf.css
fpdf.php
fpdf_tpl.php
fpdi.php
fpdi_bridge.php
fpdi_pdf_parser.php
gif.php
histo.htm
html2fpdf.php
htmltoolkit.php
info.htm
install.txt
license.txt
newpdf.pdf
no_img.gif
own.php
pdf_context.php
pdf_parser.php
pdf_table.zip
pdfdoc.pdf
praxisstellen.pdf
praxisstellen.php
source2doc.php
table_def.inc
table_def_zuweis.inc
wrapper_functions.php
zustimmung.pdf
zustimmung.php
prints3
stud
Kennwortwechsel.php
hauptframe.php
htmlpurifier-4.10.0.zip
index.php
index_alt.php
index_db.php
index_frame.htm
index_ldap.php
login.php
logout.php
menuframe.htm
styles_pc.css
testpdf.php
topframe.php
22 lines
574 B
PHP
Executable File
22 lines
574 B
PHP
Executable File
<?php
|
|
require_once('fpdi.php');
|
|
|
|
# teilweise wird chr(149) in den Briefköpfen verwendet. Dieses durch uchr ersetzen
|
|
function uchr ($u) {
|
|
return mb_convert_encoding('&#' . intval($u) . ';', 'UTF-8', 'HTML-ENTITIES');
|
|
}
|
|
|
|
class utfFPDF extends FPDI
|
|
{
|
|
function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='')
|
|
{
|
|
if ($txt != ''){
|
|
$txt = utf8_decode($txt);
|
|
}
|
|
parent::Cell($w, $h, $txt, $border, $ln, $align, $fill, $link);
|
|
}
|
|
}
|
|
if (!class_exists('FPDF_TPL')) {
|
|
require_once('fpdf_tpl.php');
|
|
}
|
|
?>
|