diff options
Diffstat (limited to 'classes')
-rw-r--r-- | classes/constants.class.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/constants.class.php b/classes/constants.class.php index aa11ffb..bb9da03 100644 --- a/classes/constants.class.php +++ b/classes/constants.class.php @@ -53,7 +53,7 @@ class constants { * @const invoice_bic The BIC code of your bank * @const invoice_tel_nr Your telephone number * @const invoice_email Your email address - * @var invoice_valuta The valuta symbol (will be placed in front of amounts). You can use a symbol like $ or a code like USD + * @const invoice_valuta The valuta symbol (will be placed in front of amounts). You can use a symbol like $ or a code like USD */ const invoice_name = 'BusinessAdmin'; const invoice_address_1 = 'My Street 1'; @@ -66,6 +66,9 @@ class constants { const invoice_email = 'my-email@domain.tld'; const invoice_valuta = '€'; + /** @const fa_valuta see http://fontawesome.io/icons/#currency; the fa- postfix for valuta */ + const fa_valuta = 'eur'; + /** @const version Version of BusinessAdmin. Don't change this yourself! */ const version = '0.2.1'; }
\ No newline at end of file |