fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.to_charset...

31 lines
746 B
PHP
Raw Permalink Normal View History

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