27 lines
646 B
PHP
27 lines
646 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @package MokoJoomCross
|
||
|
|
* @subpackage com_mokojoomcross
|
||
|
|
* @author Moko Consulting <hello@mokoconsulting.tech>
|
||
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
||
|
|
* @license GNU General Public License version 3 or later; see LICENSE
|
||
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
defined('_JEXEC') or die;
|
||
|
|
|
||
|
|
use Joomla\CMS\Installer\InstallerAdapter;
|
||
|
|
|
||
|
|
class Com_MokoJoomCrossInstallerScript
|
||
|
|
{
|
||
|
|
public function preflight(string $type, InstallerAdapter $parent): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function postflight(string $type, InstallerAdapter $parent): void
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|