mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-02 21:31:48 +01:00
- variable scopes LOCAL_SCOPE, PARENT_SCOPE, ROOT_SCOPE
- more getter/setter methodes
This commit is contained in:
25
libs/sysplugins/method.isconfigreadhidden.php
Normal file
25
libs/sysplugins/method.isconfigreadhidden.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Smarty method isConfigReadHidden
|
||||
*
|
||||
* is config read hidden mode
|
||||
*
|
||||
* @package Smarty
|
||||
* @subpackage SmartyMethod
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
|
||||
/**
|
||||
* Smarty class isConfigReadHidden
|
||||
*
|
||||
* is config read hidden mode
|
||||
*/
|
||||
class Smarty_Method_isConfigReadHidden extends Smarty_Internal_Base {
|
||||
public function execute()
|
||||
{
|
||||
return $this->smarty->config_read_hidden;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user