IP/libs/plugins/modifiercompiler.to_charset.php

34 lines
757 B
PHP
Raw Permalink Normal View History

2014-04-01 18:38:34 +00:00
<?php
/**
* Smarty plugin
*
2014-10-13 09:24:53 +00:00
* @package Smarty
2014-04-01 18:38:34 +00:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty to_charset modifier plugin
* Type: modifier<br>
* Name: to_charset<br>
* Purpose: convert character encoding from internal encoding to $charset
*
* @author Rodney Rehm
2014-10-13 09:24:53 +00:00
*
2014-04-01 18:38:34 +00:00
* @param array $params parameters
2014-10-13 09:24:53 +00:00
*
2014-04-01 18:38:34 +00:00
* @return string with compiled code
*/
2014-10-13 09:24:53 +00:00
function smarty_modifiercompiler_to_charset($params)
2014-04-01 18:38:34 +00:00
{
if (!Smarty::$_MBSTRING) {
// FIXME: (rodneyrehm) shouldn't this throw an error?
return $params[ 0 ];
2014-04-01 18:38:34 +00:00
}
if (!isset($params[ 1 ])) {
$params[ 1 ] = '"ISO-8859-1"';
2014-04-01 18:38:34 +00:00
}
return 'mb_convert_encoding(' . $params[ 0 ] . ', ' . $params[ 1 ] . ', "' . addslashes(Smarty::$_CHARSET) . '")';
2014-04-01 18:38:34 +00:00
}