6d7838a817
Generic: Repo Health / Scripts governance (push) Blocked by required conditions
Generic: Repo Health / Repository health (push) Blocked by required conditions
Generic: Repo Health / Report Issues (push) Blocked by required conditions
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 2s
Generic: Project CI / Tests (pull_request) Blocked by required conditions
Joomla: Extension CI / Tests (PHP 8.2) (pull_request) Blocked by required conditions
Joomla: Extension CI / Tests (PHP 8.3) (pull_request) Blocked by required conditions
Joomla: Extension CI / PHPStan Analysis (pull_request) Blocked by required conditions
Universal: PR Check / Build RC Package (pull_request) Blocked by required conditions
Universal: PR Check / Report Issues (pull_request) Blocked by required conditions
Generic: Repo Health / Scripts governance (pull_request) Blocked by required conditions
Generic: Repo Health / Repository health (pull_request) Blocked by required conditions
Generic: Repo Health / Report Issues (pull_request) Blocked by required conditions
Joomla: Extension CI / Release Readiness Check (pull_request) Failing after 5s
Generic: Project CI / Lint & Validate (pull_request) Successful in 8s
Joomla: Extension CI / Lint & Validate (pull_request) Failing after 9s
Universal: PR Check / Branch Policy (pull_request) Failing after 1s
Generic: Repo Health / Access control (pull_request) Successful in 2s
Universal: Secret Scanning / Gitleaks Secret Scan (pull_request) Successful in 7s
Generic: Repo Health / Site Health (pull_request) Has been skipped
Universal: PR Check / Validate PR (pull_request) Failing after 5s
Branch Cleanup / Delete merged branch (pull_request) Successful in 2s
Universal: Build & Release / Promote to RC (pull_request) Has been skipped
Universal: Build & Release / Build & Release Pipeline (pull_request) Failing after 3s
107 lines
2.1 KiB
PHP
107 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @package MokoJoomStoreLocator
|
|
* @subpackage pkg_mokojoomstorelocator
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
* @license GNU General Public License version 3 or later; see LICENSE
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Installer\InstallerAdapter;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\Log\Log;
|
|
|
|
/**
|
|
* Package installation script for MokoJoomStoreLocator.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class Pkg_MokojoomstorelocatorInstallerScript
|
|
{
|
|
/**
|
|
* Minimum PHP version required.
|
|
*
|
|
* @var string
|
|
* @since 1.0.0
|
|
*/
|
|
protected $minimumPhp = '8.1';
|
|
|
|
/**
|
|
* Minimum Joomla version required.
|
|
*
|
|
* @var string
|
|
* @since 1.0.0
|
|
*/
|
|
protected $minimumJoomla = '4.4.0';
|
|
|
|
/**
|
|
* Called before any type of action.
|
|
*
|
|
* @param string $type Installation type (install, update, discover_install).
|
|
* @param InstallerAdapter $parent The parent installer object.
|
|
*
|
|
* @return boolean True on success.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function preflight($type, $parent)
|
|
{
|
|
if (version_compare(PHP_VERSION, $this->minimumPhp, '<'))
|
|
{
|
|
Log::add(
|
|
'MokoJoomStoreLocator requires PHP ' . $this->minimumPhp . ' or later.',
|
|
Log::WARNING,
|
|
'jerror'
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
if (version_compare(JVERSION, $this->minimumJoomla, '<'))
|
|
{
|
|
Log::add(
|
|
'MokoJoomStoreLocator requires Joomla ' . $this->minimumJoomla . ' or later.',
|
|
Log::WARNING,
|
|
'jerror'
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Called after installation.
|
|
*
|
|
* @param string $type Installation type.
|
|
* @param InstallerAdapter $parent The parent installer object.
|
|
*
|
|
* @return boolean True on success.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function postflight($type, $parent)
|
|
{
|
|
// TODO: Post-installation tasks (enable modules, set defaults, etc.)
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Called on uninstallation.
|
|
*
|
|
* @param InstallerAdapter $parent The parent installer object.
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function uninstall($parent)
|
|
{
|
|
// TODO: Cleanup tasks on uninstall
|
|
}
|
|
}
|