mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-15 21:45:21 +02: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;
|
|
}
|
|
}
|
|
|
|
?>
|