mirror of
https://github.com/smarty-php/smarty.git
synced 2026-01-31 10:39:43 +01:00
21 lines
553 B
PHP
21 lines
553 B
PHP
|
|
<?php
|
||
|
|
namespace Smarty\Compile\Modifier;
|
||
|
|
/**
|
||
|
|
* Smarty to_charset modifier plugin
|
||
|
|
* Type: modifier
|
||
|
|
* Name: to_charset
|
||
|
|
* Purpose: convert character encoding from internal encoding to $charset
|
||
|
|
*
|
||
|
|
* @author Rodney Rehm
|
||
|
|
*/
|
||
|
|
|
||
|
|
class ToCharsetModifierCompiler extends Base {
|
||
|
|
|
||
|
|
public function compile($params, \Smarty\Compiler\Template $compiler) {
|
||
|
|
if (!isset($params[ 1 ])) {
|
||
|
|
$params[ 1 ] = '"ISO-8859-1"';
|
||
|
|
}
|
||
|
|
return 'mb_convert_encoding(' . $params[ 0 ] . ', ' . $params[ 1 ] . ', "' . addslashes(\Smarty\Smarty::$_CHARSET) . '")';
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|