Blame view

plugins/modifier.usd.php 153 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
  <?php
  function smarty_modifier_usd($cost)
  {  global $objCatalogs;
  	$cost_arr = $objCatalogs->getCineCurs('uah',$cost);
      return $cost_arr['usd'];
  }
  ?>