Spade
Mini Shell
| Directory:~$ /proc/self/root/home/lmsyaran/public_html/plugins/system/web357framework/ |
| [Home] [System Details] [Kill Me] |
<?php
/* ======================================================
# Web357 Framework for Joomla! - v1.9.1 (free version)
# -------------------------------------------------------
# For Joomla! CMS (v3.x)
# Author: Web357 (Yiannis Christodoulou)
# Copyright (©) 2014-2022 Web357. All rights reserved.
# License: GNU/GPLv3, http://www.gnu.org/licenses/gpl-3.0.html
# Website: https:/www.web357.com
# Demo: https://demo.web357.com/joomla/
# Support: support@web357.com
# Last modified: Wednesday 07 December 2022, 11:05:26 AM
========================================================= */
defined('_JEXEC') or die;
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
if ( ! class_exists('PlgSystemWeb357frameworkInstallerScript'))
{
require_once __DIR__ . '/script.install.helper.php';
class PlgSystemWeb357frameworkInstallerScript extends
PlgSystemWeb357frameworkInstallerScriptHelper
{
public $name = 'Web357 Framework';
public $alias = 'web357framework';
public $extension_type = 'plugin';
public function onBeforeInstall($route)
{
// Check if is new version
if ( ! $this->isNewer())
{
$this->softbreak = true;
//return false;
}
return true;
}
public function onAfterInstall($route)
{
$this->deleteOldFiles();
}
private function deleteOldFiles()
{
JFile::delete(array(JPATH_SITE .
'/plugins/system/web357framework/web357framework.script.php'));
}
}
}