51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.CMS
|
|
* @maintainer Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
|
|
*
|
|
* @created 29th July, 2020
|
|
* @copyright (C) 2020 Open Source Matters, Inc. <http://www.joomla.org>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
/**
|
|
* Version Calendar Svg script file.
|
|
*
|
|
* @package Version_Calendar_svg
|
|
*/
|
|
class mod_Version_Calendar_svgInstallerScript
|
|
{
|
|
|
|
/**
|
|
* Called before any type of action
|
|
*
|
|
* @param string $route Which action is happening (install|uninstall|discover_install|update)
|
|
* @param Joomla\CMS\Installer\InstallerAdapter $adapter The object responsible for running this script
|
|
*
|
|
* @return boolean True on success
|
|
*/
|
|
public function preflight($route, $adapter)
|
|
{
|
|
// get application
|
|
$app = JFactory::getApplication();
|
|
|
|
// the default for both install and update
|
|
$jversion = new JVersion();
|
|
if (!$jversion->isCompatible('3.8.0'))
|
|
{
|
|
$app->enqueueMessage('Please upgrade to at least Joomla! 3.8.0 before continuing!', 'error');
|
|
return false;
|
|
}
|
|
|
|
if ('install' === $route)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|