10
* Smarty indent modifier plugin
14
* Purpose: indent lines of text
15
* @link http://smarty.php.net/manual/en/language.modifier.indent.php
16
* indent (Smarty online manual)
17
* @author Monte Ohrt <monte at ohrt dot com>
23
function smarty_modifier_indent($string,$chars=4,$char=" ")
25
return preg_replace('!^!m',str_repeat($char,$chars),$string);