mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 15:05:19 +02:00
22 lines
301 B
PHP
22 lines
301 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method IsConfigReadHidden
|
|
*
|
|
* is config read hidden mode
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* is config read hidden mode
|
|
*/
|
|
function Smarty_Method_IsConfigReadHidden($smarty)
|
|
{
|
|
return $smarty->config_read_hidden;
|
|
}
|
|
?>
|