diff options
author | Camil Staps | 2015-02-15 10:20:29 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-15 10:20:29 +0100 |
commit | 0f0614e3cb34c7eff198b9ee4913457a05ed30eb (patch) | |
tree | f52d747ca426fa404c828decabe3498de1594fb9 /classes/correspondence.class.php | |
parent | Small change for last commit (diff) |
Workaround for the Euro sign
Diffstat (limited to 'classes/correspondence.class.php')
-rw-r--r-- | classes/correspondence.class.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/classes/correspondence.class.php b/classes/correspondence.class.php index 6e17528..ac3da64 100644 --- a/classes/correspondence.class.php +++ b/classes/correspondence.class.php @@ -134,6 +134,22 @@ class correspondence extends FPDF { $this->SetDisplayMode('fullpage','continuous'); } + /** + * Workaround for euro signs + * + * Euro signs in FPDF should be chr(128). Other signs don't have to be changed. + * + * @return a valuta symbol that can be used in FPDF + */ + public static function valuta() { + switch (constants::invoice_valuta) { + case '€': + return chr(128); + default: + return constants::invoice_valuta; + } + } + /** * Set the language of the correspondence (used to translate stuff) * |