From 06606fa4c566a4eca58dad4fa2d8bbc8f9377f7d Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:28:21 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/src/My.php b/src/My.php index 6f342a3..4ab5c82 100644 --- a/src/My.php +++ b/src/My.php @@ -17,12 +17,15 @@ namespace Dotclear\Plugin\dcLatestVersions; use dcCore; /** - * Plugin definitions + * This module definitions. */ class My { + /** @var string This module required php version */ + public const PHP_MIN = '7.4'; + /** - * This module id + * This module id. */ public static function id(): string { @@ -30,10 +33,28 @@ class My } /** - * This module name + * This module name. */ public static function name(): string { - return __((string) dcCore::app()->plugins->moduleInfo(self::id(), 'name')); + $name = dcCore::app()->plugins->moduleInfo(self::id(), 'name'); + + return __(is_string($name) ? $name : self::id()); + } + + /** + * This module path. + */ + public static function path(): string + { + return dirname(__DIR__); + } + + /** + * Check this module PHP version compliant. + */ + public static function phpCompliant(): bool + { + return version_compare(phpversion(), self::PHP_MIN, '>='); } }