Quote:
Originally Posted by kh99
I don't think that quite works as expected because calling return in a plugin doesn't return from the function that calls it, it provides a return value from the 'eval' call (which is ignored). But as you can see in the code above, there's a "fetched" variable, and if the plugin sets that to true then the database query (or cache lookup) won't be done. So I think you'd want your plugin to include only the code from inside the "if", then set $fetched to true.
Edit: I think tpearl's code would work because the code in fetch_template() gets it from the cache if it's set.
|
Well, you got me curous so I tested it
Code:
if (!$fetched)
{
if (isset($vbulletin->templatecache["$template_name"]))
{
$template = $vbulletin->templatecache["$template_name"];
}
else
{
self::$template_queries[$template_name] = true;
$fetch_tid = intval($templateassoc["$template_name"]);
if (!$fetch_tid)
{
$gettemp = array('template' => '');
}
else
{
$gettemp = $vbulletin->db->query_first_slave("
SELECT template
FROM " . TABLE_PREFIX . "template
WHERE templateid = $fetch_tid
");
}
$template = $gettemp['template'];
$vbulletin->templatecache["$template_name"] = $template;
}
}
if (!isset(self::$template_usage[$template_name]))
{
self::$template_usage[$template_name] = 1;
}
else
{
self::$template_usage[$template_name]++;
}
($hook = vBulletinHook::fetch_hook('fetch_template_complete')) ? eval($hook) : false;
echo 'before return<br>';
return $template;
echo 'after return';
And in hook fetch_template_complete I just put in
echo 'test hook<br>';
and got many echos of
test hook
before return
test hook
test hook
before return
test hook
test hook