9 * write the compiled resource
11 * @param string $compile_path
12 * @param string $compiled_content
13 * @param integer $resource_timestamp
16 function smarty_core_write_compiled_resource($params, &$smarty)
18 if(!@is_writable
($smarty->compile_dir
)) {
19 // compile_dir not writable, see if it exists
20 if(!@is_dir
($smarty->compile_dir
)) {
21 $smarty->trigger_error('the $compile_dir \'' . $smarty->compile_dir
. '\' does not exist, or is not a directory.', E_USER_ERROR
);
24 $smarty->trigger_error('unable to write to $compile_dir \'' . realpath($smarty->compile_dir
) . '\'. Be sure $compile_dir is writable by the web server user.', E_USER_ERROR
);
28 $_params = array('filename' => $params['compile_path'], 'timestamp'=>$params['resource_timestamp'], 'contents' => $params['compiled_content'], 'create_dirs' => true);
29 require_once(SMARTY_DIR
. 'core' . DIRECTORY_SEPARATOR
. 'core.write_file.php');
30 smarty_core_write_file($_params, $smarty);
34 /* vim: set expandtab: */