mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-04 16:20:55 +02:00
17 lines
368 B
PHP
17 lines
368 B
PHP
![]() |
<?php
|
||
|
|
||
|
/*
|
||
|
* Smarty plugin
|
||
|
* -------------------------------------------------------------
|
||
|
* Type: modifier
|
||
|
* Name: indent
|
||
|
* Purpose: indent lines of text
|
||
|
* -------------------------------------------------------------
|
||
|
*/
|
||
|
function smarty_modifier_indent($string,$chars=4,$char=" ")
|
||
|
{
|
||
|
return preg_replace('!^!m',str_repeat($char,$chars),$string);
|
||
|
}
|
||
|
|
||
|
?>
|