Automatically exported from code.google.com/p/planningalerts
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

30 líneas
613 B

  1. <?php
  2. /**
  3. * Smarty plugin
  4. * @package Smarty
  5. * @subpackage plugins
  6. */
  7. /**
  8. * Smarty wordwrap modifier plugin
  9. *
  10. * Type: modifier<br>
  11. * Name: wordwrap<br>
  12. * Purpose: wrap a string of text at a given length
  13. * @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php
  14. * wordwrap (Smarty online manual)
  15. * @author Monte Ohrt <monte at ohrt dot com>
  16. * @param string
  17. * @param integer
  18. * @param string
  19. * @param boolean
  20. * @return string
  21. */
  22. function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
  23. {
  24. return wordwrap($string,$length,$break,$cut);
  25. }
  26. ?>