mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			435 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			435 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method disableConfigReadHidden
 | 
						|
* 
 | 
						|
* Disable config read hidden mode
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty class disableConfigReadHidden
 | 
						|
* 
 | 
						|
* Disable config read hidden mode
 | 
						|
*/
 | 
						|
class Smarty_Method_disableConfigReadHidden extends Smarty_Internal_Base {
 | 
						|
    public function execute()
 | 
						|
    {
 | 
						|
        $this->smarty->config_read_hidden = false;
 | 
						|
        return;
 | 
						|
    } 
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |