Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/v/e/r/verseaumee/ptitsanes/plugins/system/easycalccheckplus/src/ |
Upload File : |
<?php
/**
* @copyright
* @package EasyCalcCheck Plus - ECC+ for Joomla! 3
* @author Viktor Vogel <admin@kubik-rubik.de>
* @version 3.3.0.0-FREE - 2021-05-03
* @link https://kubik-rubik.de/ecc-easycalccheck-plus
*
* @license GNU/GPL
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
defined('_JEXEC') || die('Restricted access');
class PlgSystemEasyCalcCheckPlusInstallerScript
{
public const MIN_VERSION_JOOMLA = '3.9.0';
public const MIN_VERSION_PHP = '7.3.0';
/**
* Name of extension that is used in the error message
*
* @var string
*
* @since 3.2.0-FREE
*/
protected $extensionName = 'EasyCalcCheck Plus';
/**
* Checks compatibility in the preflight event
*
* @param $type
* @param $parent
*
* @return bool
* @throws Exception
* @since 3.2.0-FREE
*/
public function preflight($type, $parent)
{
if (!$this->checkVersionJoomla()) {
return false;
}
if (!$this->checkVersionPhp()) {
return false;
}
return true;
}
/**
* Checks whether the Joomla! version meets the requirement
*
* @return bool
* @throws Exception
* @since 3.2.0-FREE
*/
private function checkVersionJoomla()
{
// Using deprecated JVersion, JFactory and JText classes to avoid exceptions in old Joomla! versions
$version = new JVersion();
if (!$version->isCompatible(self::MIN_VERSION_JOOMLA)) {
JFactory::getApplication()->enqueueMessage(JText::sprintf('KRJE_ERROR_JOOMLA_VERSION', $this->extensionName, self::MIN_VERSION_JOOMLA), 'error');
return false;
}
return true;
}
/**
* Checks whether the PHP version meets the requirement
*
* @return bool
* @throws Exception
* @since 3.2.0-FREE
*/
private function checkVersionPhp()
{
if (!version_compare(phpversion(), self::MIN_VERSION_PHP, 'ge')) {
JFactory::getApplication()->enqueueMessage(JText::sprintf('KRJE_ERROR_PHP_VERSION', $this->extensionName, self::MIN_VERSION_PHP), 'error');
return false;
}
return true;
}
}