Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/
Upload File :
Current File : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/script.php

<?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;
    }
}