2026-05-30 15:22:24 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @package Joomla.Site
|
|
|
|
|
* @subpackage mod_mokojoomhero
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
|
|
|
* @license GPL-3.0-or-later
|
2026-06-04 06:46:47 -05:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2026-05-30 15:22:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
|
|
|
|
|
|
use Joomla\CMS\Filesystem\Folder;
|
|
|
|
|
use Joomla\CMS\Installer\InstallerAdapter;
|
|
|
|
|
|
|
|
|
|
class Mod_MokojoomheroInstallerScript
|
|
|
|
|
{
|
|
|
|
|
public function postflight(string $type, InstallerAdapter $adapter): void
|
|
|
|
|
{
|
|
|
|
|
$heroesPath = JPATH_ROOT . '/images/heroes';
|
|
|
|
|
|
|
|
|
|
if (!is_dir($heroesPath)) {
|
|
|
|
|
Folder::create($heroesPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|