mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			762 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			762 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'])) {
 | |
|     	echo '<div id="overDiv" style="position:absolute; visibility:hidden; z-index:'.$zindex.';"></div>'."\n";
 | |
|         echo '<script type="text/javascript" language="JavaScript" src="'.$params['src'].'"></script>'."\n";
 | |
|     } else {
 | |
|         $smarty->trigger_error("popup_init: missing src parameter");
 | |
|     }
 | |
| }
 | |
| 
 | |
| /* vim: set expandtab: */
 | |
| 
 | |
| ?>
 |