示例#1
0
 function getCurrencySymbolPDF()
 {
     if (isset($GLOBALS['CONFIG']['currency_symbol'])) {
         if ($GLOBALS['CONFIG']['currency_symbol'] == '$') {
             return '$';
         } elseif ($GLOBALS['CONFIG']['currency_symbol'] == '8364') {
             return '~';
         } else {
             return SureInvoice::getCurrencyCode();
         }
     } else {
         return '$';
     }
 }