2011-09-16 14:19:56 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Smarty Resource Plugin
|
|
|
|
*
|
2014-06-06 02:40:04 +00:00
|
|
|
* @package Smarty
|
2011-09-16 14:19:56 +00:00
|
|
|
* @subpackage TemplateResources
|
2014-06-06 02:40:04 +00:00
|
|
|
* @author Rodney Rehm
|
2011-09-16 14:19:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Smarty Resource Plugin
|
|
|
|
* Base implementation for resource plugins that don't use the compiler
|
|
|
|
*
|
2014-06-06 02:40:04 +00:00
|
|
|
* @package Smarty
|
2011-09-16 14:19:56 +00:00
|
|
|
* @subpackage TemplateResources
|
|
|
|
*/
|
2013-07-14 22:15:45 +00:00
|
|
|
abstract class Smarty_Resource_Uncompiled extends Smarty_Resource
|
|
|
|
{
|
2015-01-01 23:34:29 +01:00
|
|
|
/**
|
|
|
|
* Flag that it's an uncompiled resource
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $uncompiled = true;
|
|
|
|
|
2015-08-23 01:25:57 +02:00
|
|
|
/**
|
|
|
|
* Resource does implement populateCompiledFilepath() method
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $hasCompiledHandler = true;
|
2017-11-06 01:02:56 +01:00
|
|
|
|
2011-09-16 14:19:56 +00:00
|
|
|
/**
|
|
|
|
* populate compiled object with compiled filepath
|
|
|
|
*
|
|
|
|
* @param Smarty_Template_Compiled $compiled compiled object
|
2016-03-10 22:22:46 +01:00
|
|
|
* @param Smarty_Internal_Template $_template template object
|
2011-09-16 14:19:56 +00:00
|
|
|
*/
|
|
|
|
public function populateCompiledFilepath(Smarty_Template_Compiled $compiled, Smarty_Internal_Template $_template)
|
|
|
|
{
|
2016-03-10 22:22:46 +01:00
|
|
|
$compiled->filepath = $_template->source->filepath;
|
|
|
|
$compiled->timestamp = $_template->source->timestamp;
|
|
|
|
$compiled->exists = $_template->source->exists;
|
2016-05-15 11:13:31 +02:00
|
|
|
if ($_template->smarty->merge_compiled_includes || $_template->source->handler->checkTimestamps()) {
|
|
|
|
$compiled->file_dependency[ $_template->source->uid ] =
|
|
|
|
array($compiled->filepath, $compiled->timestamp, $_template->source->type,);
|
|
|
|
}
|
2015-01-01 23:34:29 +01:00
|
|
|
}
|
2011-09-16 14:19:56 +00:00
|
|
|
}
|