XenForo
Administrative
- Thread starter
- Admin
- #1
If configured and possible, XenForo stores rendered CSS in a cache using the configured provider (Memcached, Redis, etc.) in
PHP:
Read more
ادامه مطلب...
\XF\CssRenderer::cacheFinalOutput
PHP:
Code:
protected function cacheFinalOutput(array $templates, $output)
{
if (!is_string($output) || !strlen($output))
{
return;
}
if ($this->allowCached && $this->allowFinalCacheUpdate && $this->cache && $this->includeExtraParams)
{...
Read more
ادامه مطلب...