mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 05:55:20 +02:00
27 lines
393 B
PHP
27 lines
393 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method isConfigOverwrite
|
|
*
|
|
* is config overwrite mode
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Smarty class isConfigOverwrite
|
|
*
|
|
* is config overwrite mode
|
|
*/
|
|
class Smarty_Method_isConfigOverwrite extends Smarty_Internal_Base {
|
|
public function execute()
|
|
{
|
|
return $this->smarty->config_overwrite;
|
|
|
|
}
|
|
}
|
|
|
|
?>
|