コード例 #1
0
ファイル: Currency.php プロジェクト: rrsc/freemed
 /**
  * Image_Graph_CurrencyData [Constructor].
  *
  * @param string $currencySymbol The symbol representing the currency
  */
 function Image_Graph_DataPreprocessor_Currency($currencySymbol)
 {
     parent::Image_Graph_DataPreprocessor_Formatted("{$currencySymbol} %0.2f");
 }
コード例 #2
0
 /**
  * Image_Graph_CurrencyData [Constructor].
  *
  * @param string $currencySymbol The symbol representing the currency
  */
 function Image_Graph_DataPreprocessor_Currency($currencySymbol)
 {
     parent::__construct("{$currencySymbol} %0.2f");
 }
コード例 #3
0
 /**
  * Image_Graph_CurrencyData [Constructor].
  *
  * @param string $currencySymbol The symbol representing the currency
  */
 function __construct($currencySymbol)
 {
     parent::__construct("{$currencySymbol} %0.2f");
 }