mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			765 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			765 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/*
 | 
						|
 * Smarty plugin
 | 
						|
 * -------------------------------------------------------------
 | 
						|
 * Type:     function
 | 
						|
 * Name:     popup_init
 | 
						|
 * Purpose:  initialize overlib
 | 
						|
 * -------------------------------------------------------------
 | 
						|
 */
 | 
						|
function smarty_function_popup_init($params, &$smarty)
 | 
						|
{
 | 
						|
	$zindex = 1000;
 | 
						|
	
 | 
						|
    if (!empty($params['zindex'])) {
 | 
						|
		$zindex = $params['zindex'];
 | 
						|
	}
 | 
						|
	
 | 
						|
    if (!empty($params['src'])) {
 | 
						|
    	return '<div id="overDiv" style="position:absolute; visibility:hidden; z-index:'.$zindex.';"></div>' . "\n"
 | 
						|
         . '<script type="text/javascript" language="JavaScript" src="'.$params['src'].'"></script>' . "\n";
 | 
						|
    } else {
 | 
						|
        $smarty->trigger_error("popup_init: missing src parameter");
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
/* vim: set expandtab: */
 | 
						|
 | 
						|
?>
 |