aboutsummaryrefslogtreecommitdiff
path: root/classes/correspondence.class.php
diff options
context:
space:
mode:
authorCamil Staps2015-02-15 10:20:29 +0100
committerCamil Staps2015-02-15 10:20:29 +0100
commit0f0614e3cb34c7eff198b9ee4913457a05ed30eb (patch)
treef52d747ca426fa404c828decabe3498de1594fb9 /classes/correspondence.class.php
parentSmall change for last commit (diff)
Workaround for the Euro sign
Diffstat (limited to 'classes/correspondence.class.php')
-rw-r--r--classes/correspondence.class.php16
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)
*