File Manager

Current Directory: /home/astoriaah/www/old15/plugins/system/admintools/feature
Viewing File: /home/astoriaah/www/old15/plugins/system/admintools/feature/cacheexpire.php
<?php /** * @package AdminTools * @copyright Copyright (c)2010-2015 Nicholas K. Dionysopoulos * @license GNU General Public License version 3, or later */ defined('_JEXEC') or die; class AtsystemFeatureCacheexpire extends AtsystemFeatureAbstract { protected $loadOrder = 640; /** * Is this feature enabled? * * @return bool */ public function isEnabled() { return ($this->params->get('cacheexpire', 0) == 1); } public function onAfterInitialise() { $minutes = (int)$this->params->get('cacheexp_freq', 0); if ($minutes <= 0) { return; } $lastJob = $this->getTimestamp('cache_expire'); $nextJob = $lastJob + $minutes * 60; JLoader::import('joomla.utilities.date'); $now = new JDate(); if ($now->toUnix() >= $nextJob) { $this->setTimestamp('cache_expire'); $this->expireCache(); } } /** * Expires cache items */ private function expireCache() { $er = @error_reporting(0); $cache = JFactory::getCache(''); $cache->gc(); @error_reporting($er); } }