5 * @subpackage PluginsModifierCompiler
9 * Smarty indent modifier plugin
13 * Purpose: indent lines of text
14 * @link http://smarty.php.net/manual/en/language.modifier.indent.php
15 * indent (Smarty online manual)
17 * @param array $params parameters
18 * @return string with compiled code
21 function smarty_modifiercompiler_indent($params, $compiler)
23 if (!isset($params[1])) {
26 if (!isset($params[2])) {
29 return 'preg_replace(\'!^!m\',str_repeat(' . $params[2] . ',' . $params[1] . '),' . $params[0] . ')';