2026-05-28 12:54:43 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
2026-06-21 11:38:41 -05:00
|
|
|
* @package MokoSuiteCross
|
|
|
|
|
* @subpackage com_mokosuitecross
|
2026-05-28 12:54:43 -05:00
|
|
|
* @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;
|
|
|
|
|
|
2026-06-21 11:38:41 -05:00
|
|
|
class Com_MokoSuiteCrossInstallerScript
|
2026-05-28 12:54:43 -05:00
|
|
|
{
|
|
|
|
|
public function preflight(string $type, InstallerAdapter $parent): bool
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function postflight(string $type, InstallerAdapter $parent): void
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|