From 212324642e96f013bd15315a561c0e84d404529e Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:50:59 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/src/My.php b/src/My.php index ba9e548..3b8895c 100644 --- a/src/My.php +++ b/src/My.php @@ -21,14 +21,14 @@ use dcCore; */ class My { - /** @var string Required php version */ - public const PHP_MIN = '8.1'; - - /** @var string Locales folder name */ + /** @var string Locales folder name */ public const LOCALES_FOLDER = 'locales'; + /** @var string This module required php version */ + public const PHP_MIN = '8.1'; + /** - * This module id + * This module id. */ public static function id(): string { @@ -36,15 +36,25 @@ 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()); } /** - * Check php version + * This module path. + */ + public static function path(): string + { + return dirname(__DIR__); + } + + /** + * Check this module PHP version compliant. */ public static function phpCompliant(): bool {