| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * Smarty plugin | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * @subpackage PluginsFunction | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * Smarty {html_image} function plugin | 
					
						
							|  |  |  |  * Type:     function<br> | 
					
						
							|  |  |  |  * Name:     html_image<br> | 
					
						
							|  |  |  |  * Date:     Feb 24, 2003<br> | 
					
						
							|  |  |  |  * Purpose:  format HTML tags for the image<br> | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * Examples: {html_image file="/images/masthead.gif"}<br> | 
					
						
							|  |  |  |  * Output:   <img src="/images/masthead.gif" width=400 height=23><br> | 
					
						
							|  |  |  |  * Params: | 
					
						
							|  |  |  |  * <pre> | 
					
						
							|  |  |  |  * - file        - (required) - file (and path) of image | 
					
						
							|  |  |  |  * - height      - (optional) - image height (default actual height) | 
					
						
							|  |  |  |  * - width       - (optional) - image width (default actual width) | 
					
						
							|  |  |  |  * - basedir     - (optional) - base directory for absolute paths, default is environment variable DOCUMENT_ROOT | 
					
						
							|  |  |  |  * - path_prefix - prefix for path output (optional, default empty) | 
					
						
							|  |  |  |  * </pre> | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @link    http://www.smarty.net/manual/en/language.function.html.image.php {html_image} | 
					
						
							|  |  |  |  *          (Smarty online manual) | 
					
						
							|  |  |  |  * @author  Monte Ohrt <monte at ohrt dot com> | 
					
						
							|  |  |  |  * @author  credits to Duda <duda@big.hu> | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * @version 1.0 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * @param array                    $params   parameters | 
					
						
							|  |  |  |  * @param Smarty_Internal_Template $template template object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @throws SmartyException | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * @return string | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @uses    smarty_function_escape_special_chars() | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-11-12 23:42:32 +00:00
										 |  |  | function smarty_function_html_image($params, $template) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-27 11:04:00 +02:00
										 |  |  |     if (!isset($template->smarty->_cache[ '_required_sesc' ])) { | 
					
						
							| 
									
										
										
										
											2016-09-02 01:08:50 +02:00
										 |  |  |         require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); | 
					
						
							| 
									
										
										
										
											2017-05-27 11:04:00 +02:00
										 |  |  |         $template->smarty->_cache[ '_required_sesc' ] = true; | 
					
						
							| 
									
										
										
										
											2016-09-02 01:08:50 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $alt = ''; | 
					
						
							|  |  |  |     $file = ''; | 
					
						
							|  |  |  |     $height = ''; | 
					
						
							|  |  |  |     $width = ''; | 
					
						
							|  |  |  |     $extra = ''; | 
					
						
							|  |  |  |     $prefix = ''; | 
					
						
							|  |  |  |     $suffix = ''; | 
					
						
							|  |  |  |     $path_prefix = ''; | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     $basedir = isset($_SERVER[ 'DOCUMENT_ROOT' ]) ? $_SERVER[ 'DOCUMENT_ROOT' ] : ''; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     foreach ($params as $_key => $_val) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         switch ($_key) { | 
					
						
							|  |  |  |             case 'file': | 
					
						
							|  |  |  |             case 'height': | 
					
						
							|  |  |  |             case 'width': | 
					
						
							|  |  |  |             case 'dpi': | 
					
						
							|  |  |  |             case 'path_prefix': | 
					
						
							|  |  |  |             case 'basedir': | 
					
						
							|  |  |  |                 $$_key = $_val; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case 'alt': | 
					
						
							|  |  |  |                 if (!is_array($_val)) { | 
					
						
							|  |  |  |                     $$_key = smarty_function_escape_special_chars($_val); | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2010-08-13 10:39:51 +00:00
										 |  |  |                     throw new SmartyException ("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case 'link': | 
					
						
							|  |  |  |             case 'href': | 
					
						
							|  |  |  |                 $prefix = '<a href="' . $_val . '">'; | 
					
						
							|  |  |  |                 $suffix = '</a>'; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 if (!is_array($_val)) { | 
					
						
							|  |  |  |                     $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2010-08-13 10:39:51 +00:00
										 |  |  |                     throw new SmartyException ("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (empty($file)) { | 
					
						
							| 
									
										
										
										
											2009-12-01 20:34:32 +00:00
										 |  |  |         trigger_error("html_image: missing 'file' parameter", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     if ($file[ 0 ] == '/') { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         $_image_path = $basedir . $file; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         $_image_path = $file; | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |     // strip file protocol
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     if (stripos($params[ 'file' ], 'file://') === 0) { | 
					
						
							|  |  |  |         $params[ 'file' ] = substr($params[ 'file' ], 7); | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     $protocol = strpos($params[ 'file' ], '://'); | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |     if ($protocol !== false) { | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         $protocol = strtolower(substr($params[ 'file' ], 0, $protocol)); | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |     if (isset($template->smarty->security_policy)) { | 
					
						
							|  |  |  |         if ($protocol) { | 
					
						
							|  |  |  |             // remote resource (or php stream, …)
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |             if (!$template->smarty->security_policy->isTrustedUri($params[ 'file' ])) { | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // local file
 | 
					
						
							| 
									
										
										
										
											2014-06-08 19:03:39 +00:00
										 |  |  |             if (!$template->smarty->security_policy->isTrustedResourceDir($_image_path)) { | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     if (!isset($params[ 'width' ]) || !isset($params[ 'height' ])) { | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |         // FIXME: (rodneyrehm) getimagesize() loads the complete file off a remote resource, use custom [jpg,png,gif]header reader!
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         if (!$_image_data = @getimagesize($_image_path)) { | 
					
						
							|  |  |  |             if (!file_exists($_image_path)) { | 
					
						
							| 
									
										
										
										
											2009-12-01 20:34:32 +00:00
										 |  |  |                 trigger_error("html_image: unable to find '$_image_path'", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 return; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |             } elseif (!is_readable($_image_path)) { | 
					
						
							| 
									
										
										
										
											2009-12-01 20:34:32 +00:00
										 |  |  |                 trigger_error("html_image: unable to read '$_image_path'", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2009-12-01 20:34:32 +00:00
										 |  |  |                 trigger_error("html_image: '$_image_path' is not a valid image file", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 return; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         if (!isset($params[ 'width' ])) { | 
					
						
							|  |  |  |             $width = $_image_data[ 0 ]; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         if (!isset($params[ 'height' ])) { | 
					
						
							|  |  |  |             $height = $_image_data[ 1 ]; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     if (isset($params[ 'dpi' ])) { | 
					
						
							|  |  |  |         if (strstr($_SERVER[ 'HTTP_USER_AGENT' ], 'Mac')) { | 
					
						
							| 
									
										
										
										
											2011-12-18 22:21:49 +00:00
										 |  |  |             // FIXME: (rodneyrehm) wrong dpi assumption
 | 
					
						
							|  |  |  |             // don't know who thought this up… even if it was true in 1998, it's definitely wrong in 2011.
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             $dpi_default = 72; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $dpi_default = 96; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         $_resize = $dpi_default / $params[ 'dpi' ]; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         $width = round($width * $_resize); | 
					
						
							|  |  |  |         $height = round($height * $_resize); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     return $prefix . '<img src="' . $path_prefix . $file . '" alt="' . $alt . '" width="' . $width . '" height="' . | 
					
						
							|  |  |  |            $height . '"' . $extra . ' />' . $suffix; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | } |