60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* @package Cache Cleaner
|
|
* @version 8.2.2
|
|
*
|
|
* @author Peter van Westen <info@regularlabs.com>
|
|
* @link http://regularlabs.com
|
|
* @copyright Copyright © 2022 Regular Labs All Rights Reserved
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Filesystem\File as JFile;
|
|
use Joomla\CMS\Filesystem\Folder as JFolder;
|
|
|
|
class PlgSystemCacheCleanerInstallerScript
|
|
{
|
|
public function postflight($install_type, $adapter)
|
|
{
|
|
if ( ! in_array($install_type, ['install', 'update']))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
self::deleteJoomla3Files();
|
|
|
|
return true;
|
|
}
|
|
|
|
private static function delete($files = [])
|
|
{
|
|
foreach ($files as $file)
|
|
{
|
|
if (is_dir($file))
|
|
{
|
|
JFolder::delete($file);
|
|
}
|
|
|
|
if (is_file($file))
|
|
{
|
|
JFile::delete($file);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static function deleteJoomla3Files()
|
|
{
|
|
self::delete(
|
|
[
|
|
JPATH_SITE . '/media/cachecleaner/images',
|
|
JPATH_SITE . '/media/cachecleaner/less',
|
|
JPATH_SITE . '/plugins/system/cachecleaner/vendor',
|
|
JPATH_SITE . '/plugins/system/cachecleaner/src/Cache/JotCache.php',
|
|
JPATH_SITE . '/plugins/system/cachecleaner/src/Cache/JotCacheMainModelMain.php',
|
|
]
|
|
);
|
|
}
|
|
}
|