mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-06 07:11:37 +01:00
27 lines
605 B
PHP
27 lines
605 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Smarty plugin
|
||
|
|
* @package Smarty
|
||
|
|
* @subpackage plugins
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* write the compiled template
|
||
|
|
*
|
||
|
|
* @param string $compile_path
|
||
|
|
* @param string $template_compiled
|
||
|
|
* @param integer $template_timestamp
|
||
|
|
* @return true
|
||
|
|
*/
|
||
|
|
function smarty_core_write_compiled_template($params, &$this)
|
||
|
|
{
|
||
|
|
$_params = array('filename' => $params['compile_path'], 'contents' => $params['template_compiled'], 'create_dirs' => true);
|
||
|
|
$this->_execute_core_function('write_file', $_params);
|
||
|
|
touch($params['compile_path'], $params['template_timestamp']);
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* vim: set expandtab: */
|
||
|
|
|
||
|
|
?>
|