Your IP : 216.73.216.240
<?php
/*
* @package TechFry Library
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Installer\InstallerAdapter;
use Joomla\CMS\Factory;
class lib_TechfryInstallerScript
{
public function preflight($type, InstallerAdapter $adapter)
{
$app = Factory::getApplication();
$app->enqueueMessage($type . ' Successful (Pre).');
return true;
}
public function postflight($type, InstallerAdapter $adapter)
{
$app = Factory::getApplication();
$app->enqueueMessage($type . ' Successful (Post).');
return true;
}
}