Chris PeBenito 696b41
Chris PeBenito 696b41
/**
Chris PeBenito 696b41
 * Smarty plugin
Chris PeBenito 696b41
 * @package Smarty
Chris PeBenito 696b41
 * @subpackage plugins
Chris PeBenito 696b41
 */
Chris PeBenito 696b41
Chris PeBenito 696b41
Chris PeBenito 696b41
/**
Chris PeBenito 696b41
 * Smarty wordwrap modifier plugin
Chris PeBenito 696b41
 *
Chris PeBenito 696b41
 * Type:     modifier
Chris PeBenito 696b41
 * Name:     wordwrap
Chris PeBenito 696b41
 * Purpose:  wrap a string of text at a given length
Chris PeBenito 696b41
 * @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php
Chris PeBenito 696b41
 *          wordwrap (Smarty online manual)
Chris PeBenito 696b41
 * @param string
Chris PeBenito 696b41
 * @param integer
Chris PeBenito 696b41
 * @param string
Chris PeBenito 696b41
 * @param boolean
Chris PeBenito 696b41
 * @return string
Chris PeBenito 696b41
 */
Chris PeBenito 696b41
function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false)
Chris PeBenito 696b41
{
Chris PeBenito 696b41
    return wordwrap($string,$length,$break,$cut);
Chris PeBenito 696b41
}
Chris PeBenito 696b41
Chris PeBenito 696b41
?>