mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			261 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			261 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method isForceCompile
 | 
						|
* 
 | 
						|
* is forced compiling
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* 
 | 
						|
* is forced compiling
 | 
						|
*/
 | 
						|
function isForceCompile($smarty)
 | 
						|
    {
 | 
						|
        return $smarty->force_compile;
 | 
						|
    } 
 | 
						|
 | 
						|
 | 
						|
?>
 |