mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			286 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			286 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method isConfigReadHidden
 | 
						|
* 
 | 
						|
* is config read hidden mode
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* 
 | 
						|
* is config read hidden mode
 | 
						|
*/
 | 
						|
function isConfigReadHidden($smarty)
 | 
						|
    {
 | 
						|
        return $smarty->config_read_hidden;
 | 
						|
    } 
 | 
						|
?>
 |