use define php min

This commit is contained in:
Jean-Christian Paul Denis 2023-05-10 11:10:29 +02:00
parent 03d9044039
commit fb3c3a5ccf
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
6 changed files with 7 additions and 19 deletions

View File

@ -20,7 +20,10 @@ $this->registerModule(
'Jean-Christian Denis',
'2023.04.22',
[
'requires' => [['core', '2.26']],
'requires' => [
['php', '8.1'],
['core', '2.26'],
],
'permissions' => null,
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),

View File

@ -25,8 +25,7 @@ class Backend extends dcNsProcess
public static function init(): bool
{
static::$init = defined('DC_CONTEXT_ADMIN')
&& dcCore::app()->auth?->isSuperAdmin()
&& My::phpCompliant();
&& dcCore::app()->auth?->isSuperAdmin();
return static::$init;
}

View File

@ -34,8 +34,7 @@ class Config extends dcNsProcess
public static function init(): bool
{
static::$init == defined('DC_CONTEXT_ADMIN')
&& dcCore::app()->auth?->isSuperAdmin()
&& My::phpCompliant();
&& dcCore::app()->auth?->isSuperAdmin();
return static::$init;
}

View File

@ -24,7 +24,6 @@ class Install extends dcNsProcess
public static function init(): bool
{
static::$init = defined('DC_CONTEXT_ADMIN')
&& My::phpCompliant()
&& dcCore::app()->newVersion(My::id(), dcCore::app()->plugins->moduleInfo(My::id(), 'version'));
return static::$init;

View File

@ -36,8 +36,7 @@ class Manage extends dcNsProcess
public static function init(): bool
{
static::$init = defined('DC_CONTEXT_ADMIN')
&& dcCore::app()->auth?->isSuperAdmin()
&& My::phpCompliant();
&& dcCore::app()->auth?->isSuperAdmin();
return static::$init;
}

View File

@ -24,9 +24,6 @@ class My
/** @var string Licenses default templates folder name */
public const TEMPLATE_FOLDER = 'licenses';
/** @var string This module required php version */
public const PHP_MIN = '8.1';
/**
* This module id.
*/
@ -52,12 +49,4 @@ class My
{
return dirname(__DIR__);
}
/**
* Check this module PHP version compliant.
*/
public static function phpCompliant(): bool
{
return version_compare(phpversion(), self::PHP_MIN, '>=');
}
}