2026-06-12 00:41:21 -05:00
|
|
|
<?php
|
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
|
use Joomla\CMS\Installer\InstallerAdapter;
|
2026-07-10 16:26:10 -05:00
|
|
|
class Pkg_mokosuitenpoInstallerScript
|
2026-06-12 00:41:21 -05:00
|
|
|
{
|
2026-07-10 16:26:10 -05:00
|
|
|
public function preflight(string $type, InstallerAdapter $adapter): bool { return true; }
|
|
|
|
|
public function postflight(string $type, InstallerAdapter $adapter): void {}
|
2026-06-12 00:41:21 -05:00
|
|
|
}
|