modifier.indent.php 519 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Smarty plugin
  4. * @package Smarty
  5. * @subpackage plugins
  6. */
  7. /**
  8. * Smarty indent modifier plugin
  9. *
  10. * Type: modifier<br>
  11. * Name: indent<br>
  12. * Purpose: indent lines of text
  13. * @link http://smarty.php.net/manual/en/language.modifier.indent.php
  14. * indent (Smarty online manual)
  15. * @param string
  16. * @param integer
  17. * @param string
  18. * @return string
  19. */
  20. function smarty_modifier_indent($string,$chars=4,$char=" ")
  21. {
  22. return preg_replace('!^!m',str_repeat($char,$chars),$string);
  23. }
  24. ?>