mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 14:35:19 +02:00
32 lines
478 B
PHP
32 lines
478 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method getConfigDir
|
|
*
|
|
* Returns directory of config files
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Smarty class getConfigDir
|
|
*
|
|
* Returns directory of config files
|
|
*/
|
|
|
|
class Smarty_Method_GetConfigDir extends Smarty_Internal_Base {
|
|
/**
|
|
* Returns directory of config files
|
|
*
|
|
* @return array config folder
|
|
*/
|
|
public function execute()
|
|
{
|
|
return $this->smarty->config_dir;
|
|
}
|
|
}
|
|
|
|
?>
|