mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-19 07:25:20 +02:00
28 lines
396 B
PHP
28 lines
396 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method GetCompileDir
|
|
*
|
|
* Returns directory of compiled templates
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Returns directory of compiled templates
|
|
*/
|
|
|
|
/**
|
|
* Returns directory of compiled templates
|
|
*
|
|
* @return array compiled template folder
|
|
*/
|
|
function Smarty_Method_GetCompileDir($smarty)
|
|
{
|
|
return $this->smarty->compile_dir;
|
|
}
|
|
|
|
?>
|