예제 #1
0
파일: mdl.cur.php 프로젝트: noikiy/MyShop
 function mdl_cur($system)
 {
     parent::modelFactory($system);
     if (defined('IN_INSTALLER')) {
         return;
     }
     $this->_money_format = array('decimals' => $this->system->getConf('system.money.operation.decimals'), 'dec_point' => $this->system->getConf('system.money.dec_point'), 'thousands_sep' => $this->system->getConf('system.money.thousands_sep'), 'fonttend_decimal_type' => $this->system->getConf('system.money.operation.carryset'), 'fonttend_decimal_remain' => $this->system->getConf('system.money.operation.decimals'));
 }