| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2003-04-20 06:01:16 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  |  * Smarty plugin | 
					
						
							| 
									
										
										
										
											2003-04-20 06:01:16 +00:00
										 |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage plugins | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2003-04-20 21:12:13 +00:00
										 |  |  |  * Smarty {textformat}{/textformat} block plugin | 
					
						
							| 
									
										
										
										
											2003-04-20 06:01:16 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Type:     block function<br> | 
					
						
							|  |  |  |  * Name:     textformat<br> | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  |  * Purpose:  format text a certain way with preset styles | 
					
						
							| 
									
										
										
										
											2003-04-20 06:01:16 +00:00
										 |  |  |  *           or custom wrap/indent settings<br> | 
					
						
							| 
									
										
										
										
											2003-04-20 21:12:13 +00:00
										 |  |  |  * @link http://smarty.php.net/manual/en/language.function.textformat.php {textformat} | 
					
						
							|  |  |  |  *       (Smarty online manual) | 
					
						
							| 
									
										
										
										
											2003-04-20 06:01:16 +00:00
										 |  |  |  * @param array | 
					
						
							|  |  |  |  * <pre> | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  |  * Params:   style: string (email) | 
					
						
							|  |  |  |  *           indent: integer (0) | 
					
						
							|  |  |  |  *           wrap: integer (80) | 
					
						
							|  |  |  |  *           wrap_char string ("\n") | 
					
						
							|  |  |  |  *           indent_char: string (" ") | 
					
						
							|  |  |  |  *           wrap_boundary: boolean (true) | 
					
						
							| 
									
										
										
										
											2003-04-20 06:01:16 +00:00
										 |  |  |  * </pre> | 
					
						
							|  |  |  |  * @param string contents of the block | 
					
						
							|  |  |  |  * @param Smarty clever simulation of a method | 
					
						
							| 
									
										
										
										
											2003-04-20 21:12:13 +00:00
										 |  |  |  * @return string string $content re-formatted | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2003-06-16 19:45:11 +00:00
										 |  |  | function smarty_block_textformat($params, $content, &$smarty) | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	$style = null; | 
					
						
							|  |  |  | 	$indent = 0; | 
					
						
							|  |  |  | 	$indent_first = 0; | 
					
						
							|  |  |  | 	$indent_char = ' '; | 
					
						
							|  |  |  | 	$wrap = 80; | 
					
						
							|  |  |  | 	$wrap_char = "\n"; | 
					
						
							|  |  |  | 	$wrap_cut = false; | 
					
						
							|  |  |  | 	$assign = null; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if($content == null) { | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     extract($params); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if($style == 'email') { | 
					
						
							|  |  |  | 		$wrap = 72; | 
					
						
							|  |  |  | 	}	 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	// split into paragraphs	
 | 
					
						
							|  |  |  | 	$paragraphs = preg_split('![\r\n][\r\n]!',$content); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	foreach($paragraphs as $paragraph) { | 
					
						
							|  |  |  | 		if($paragraph == '') { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// convert mult. spaces & special chars to single space
 | 
					
						
							|  |  |  | 		$paragraph = preg_replace(array('!\s+!','!(^\s+)|(\s+$)!'),array(' ',''),$paragraph); | 
					
						
							|  |  |  | 		// indent first line
 | 
					
						
							|  |  |  | 		if($indent_first > 0) { | 
					
						
							|  |  |  | 			$paragraph = str_repeat($indent_char,$indent_first) . $paragraph; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// wordwrap sentences
 | 
					
						
							|  |  |  | 		$paragraph = wordwrap($paragraph, $wrap - $indent, $wrap_char, $wrap_cut); | 
					
						
							|  |  |  | 		// indent lines
 | 
					
						
							|  |  |  | 		if($indent > 0) { | 
					
						
							|  |  |  | 			$paragraph = preg_replace('!^!m',str_repeat($indent_char,$indent),$paragraph); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		$output .= $paragraph . $wrap_char . $wrap_char; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 				 | 
					
						
							|  |  |  | 	if($assign != null) { | 
					
						
							| 
									
										
										
										
											2003-06-16 19:45:11 +00:00
										 |  |  | 		$smarty->assign($assign,$output); | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2003-04-20 18:33:31 +00:00
										 |  |  | 		return $output; | 
					
						
							| 
									
										
										
										
											2002-09-16 15:19:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |