| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Smarty plugin | 
					
						
							|  |  |  |  * ------------------------------------------------------------- | 
					
						
							|  |  |  |  * Type:     function
 | 
					
						
							|  |  |  |  * Name:     math | 
					
						
							|  |  |  |  * Purpose:  handle math computations in template | 
					
						
							|  |  |  |  * ------------------------------------------------------------- | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  | function smarty_function_math($params, &$smarty) | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     // be sure equation parameter is present
 | 
					
						
							| 
									
										
										
										
											2002-06-03 16:13:37 +00:00
										 |  |  |     if (empty($params['equation'])) { | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  |         $smarty->trigger_error("math: missing equation parameter"); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-03 16:13:37 +00:00
										 |  |  |     $equation = $params['equation']; | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // make sure parenthesis are balanced
 | 
					
						
							|  |  |  |     if (substr_count($equation,"(") != substr_count($equation,")")) { | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  |         $smarty->trigger_error("math: unbalanced parenthesis"); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // match all vars in equation, make sure all are passed
 | 
					
						
							|  |  |  |     preg_match_all("![a-zA-Z][a-zA-Z0-9]*!",$equation, $match); | 
					
						
							|  |  |  |     $allowed_funcs = array('int','abs','ceil','cos','exp','floor','log','log10', | 
					
						
							|  |  |  |                            'max','min','pi','pow','rand','round','sin','sqrt','srand','tan'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     foreach($match[0] as $curr_var) { | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  |         if (!in_array($curr_var,array_keys($params)) && !in_array($curr_var, $allowed_funcs)) { | 
					
						
							|  |  |  |             $smarty->trigger_error("math: parameter $curr_var not passed as argument"); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  |     foreach($params as $key => $val) { | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         if ($key != "equation" && $key != "format" && $key != "assign") { | 
					
						
							|  |  |  |             // make sure value is not empty
 | 
					
						
							|  |  |  |             if (strlen($val)==0) { | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  |                 $smarty->trigger_error("math: parameter $key is empty"); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (!is_numeric($val)) { | 
					
						
							| 
									
										
										
										
											2002-02-20 22:24:32 +00:00
										 |  |  |                 $smarty->trigger_error("math: parameter $key: is not numeric"); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $equation = preg_replace("/\b$key\b/",$val, $equation); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     eval("\$smarty_math_result = ".$equation.";"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-03 16:13:37 +00:00
										 |  |  |     if (empty($params['format'])) { | 
					
						
							|  |  |  |         if (empty($params['assign'])) { | 
					
						
							| 
									
										
										
										
											2003-01-08 17:34:45 +00:00
										 |  |  |             return $smarty_math_result; | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2002-06-03 16:13:37 +00:00
										 |  |  |             $smarty->assign($params['assign'],$smarty_math_result); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2002-06-03 16:13:37 +00:00
										 |  |  |         if (empty($params['assign'])){ | 
					
						
							|  |  |  |             printf($params['format'],$smarty_math_result); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2002-06-03 16:13:37 +00:00
										 |  |  |             $smarty->assign($params['assign'],sprintf($params['format'],$smarty_math_result)); | 
					
						
							| 
									
										
										
										
											2002-01-31 20:49:40 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |