Anpassung von Adressen und Charset-Umstellung auf utf-8

This commit is contained in:
2016-07-08 13:31:51 +00:00
parent 1c201488b6
commit 19a604f024
14 changed files with 35 additions and 31 deletions

View File

@@ -3,9 +3,9 @@ $pdf->SetFont('Helvetica', '', 8);
$pdf->SetY(50);
$pdf->SetX(25);
$pdf->SetLeftMargin(25);
$pdf->Write(4, "Pablo Rink und Christian Steinle GbR");
$pdf->Write(4, "CS medien - Christian Steinle");
$pdf->Write(4, ", Im Gässele 8, 89079 Ulm / Unterweiler\n\n");
$pdf->Write(4, ", Geislinger Str. 14, 73312 Geislingen\n\n");
$pdf->SetFont('Helvetica', '', 10);

View File

@@ -9,9 +9,9 @@ $this->Image('img/1000_logo.gif', 20, 20, 50);
$this->SetFont('Helvetica', '', 10);
$this->SetY(20);
$this->SetLeftMargin(148);
$this->Cell(52, 4, "Pablo Rink und Christian Steinle GbR", 0, 1, 'R');
$this->Cell(52, 4, "Im Gässele 8", 0, 1, 'R');
$this->Cell(52, 4, "89079 Ulm / Unterweiler", 0, 1, 'R');
$this->Cell(52, 4, "CS medien - Christian Steinle", 0, 1, 'R');
$this->Cell(52, 4, "Geislinger Str. 14", 0, 1, 'R');
$this->Cell(52, 4, "73312 Geislingen", 0, 1, 'R');
$this->SetLeftMargin(20);
$this->SetY(55);

View File

@@ -89,7 +89,7 @@ if ("" != $nt['Text'])
$pdf->Write(4, "\n" . $nt['Text'] . "\n");
}
$var = "Mit freundlichen Grüßen\nPablo Rink und Christian Steinle";
$var = "Mit freundlichen Grüßen\nChristian Steinle";
include __DIR__ . "/replace_gruss.php";
$pdf->SetFont('Helvetica', '', 10);
$pdf->Write(4, "\n" . $var);