%PDF- %PDF-
| Direktori : /home/vacivi36/public_bakcup/old/wp-content/plugins/loco-translate/old/lib/compat/ |
| Current File : /home/vacivi36/public_bakcup/old/wp-content/plugins/loco-translate/old/lib/compat/loco-iconv.php |
<?php
/**
* Polyfiller for missing PHP iconv extension.
* Simply avoids fatal errors. Doesn't attempt to really replace the functionality
*/
function loco_compat_iconv( $in_charset, $out_charset, $str ){
return $str;
}
if( ! extension_loaded('iconv') && WP_DEBUG && ( ! defined('DOING_AJAX') || ! DOING_AJAX ) ){
LocoAdmin::warning( sprintf( __('PHP extension "%s" is not installed. If you experience problems you should install it','loco-translate'), 'iconv' ) );
}
if( ! function_exists('iconv') ){
function iconv( $in_charset = '', $out_charset = '', $str = '' ){
return loco_compat_iconv( $in_charset, $out_charset, $str );
}
}