Пример #1
0
 protected function _getValueFromPostData($postData)
 {
     $ret = parent::_getValueFromPostData($postData);
     $punycode = new Kwf_Util_Punycode();
     $ret = $punycode->encode($ret);
     return $ret;
 }
Пример #2
0
 public function componentToString($data)
 {
     $ret = parent::componentToString($data);
     $punycode = new Kwf_Util_Punycode();
     return $punycode->decode($ret);
 }