Files
smarty/demo/plugins/resource.extendsall.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2011-09-16 14:19:56 +00:00
<?php
/**
* Extends All Resource
* Resource Implementation modifying the extends-Resource to walk
* through the template_dirs and inherit all templates of the same name
*
2011-09-16 14:19:56 +00:00
* @package Resource-examples
* @author Rodney Rehm
2011-09-16 14:19:56 +00:00
*/
class Smarty_Resource_Extendsall extends Smarty_Internal_Resource_Extends
{
2011-09-16 14:19:56 +00:00
/**
* populate Source Object with meta data from Resource
*
* @param Smarty_Template_Source $source source object
* @param Smarty_Internal_Template $_template template object
*
2011-09-16 14:19:56 +00:00
* @return void
*/
public function populate(Smarty_Template_Source $source, Smarty_Internal_Template $_template = null)
2011-09-16 14:19:56 +00:00
{
$uid = '';
$sources = array();
$exists = true;
foreach ($source->smarty->getTemplateDir() as $key => $directory) {
2011-09-16 14:19:56 +00:00
try {
$s = Smarty_Template_Source::load(null, $source->smarty, 'file:[' . $key . ']' . $source->name);
2011-09-16 14:19:56 +00:00
if (!$s->exists) {
continue;
}
$sources[$s->uid] = $s;
$uid .= $s->filepath;
}
catch (SmartyException $e) {
}
2011-09-16 14:19:56 +00:00
}
2011-09-16 14:19:56 +00:00
if (!$sources) {
$source->exists = false;
return;
2011-09-16 14:19:56 +00:00
}
2011-09-16 14:19:56 +00:00
$sources = array_reverse($sources, true);
reset($sources);
$s = current($sources);
2011-09-16 14:19:56 +00:00
$source->components = $sources;
$source->filepath = $s->filepath;
$source->uid = sha1($uid);
$source->exists = $exists;
if ($_template && $_template->smarty->compile_check) {
$source->timestamp = $s->getTimeStamp();
2011-09-16 14:19:56 +00:00
}
}
}