From 75133f0982a23403b3ba5abc17968c10a4472a12 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:41:19 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/src/My.php b/src/My.php index 98b2ad5..e911f03 100644 --- a/src/My.php +++ b/src/My.php @@ -16,12 +16,19 @@ namespace Dotclear\Plugin\myUrlHandlers; use dcCore; +/** + * This module definitions. + */ class My { + /** @var string This module settings ID */ public const NS_SETTING_ID = 'handlers'; + /** @var string This module required php version */ + public const PHP_MIN = '7.4'; + /** - * This module id + * This module id. */ public static function id(): string { @@ -29,10 +36,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, '>='); } }