From 7f281007e6670c35a6755c9eb174c41cb6310809 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:43:31 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/src/My.php b/src/My.php index b8b9c89..1a41d92 100644 --- a/src/My.php +++ b/src/My.php @@ -16,12 +16,12 @@ namespace Dotclear\Plugin\pacKman; use dcCore; +/** + * This module definitions. + */ class My { - /** @var string Required php version */ - public const PHP_MIN = '8.1'; - - /** @var array Excluded files */ + /** @var array Excluded files */ public const EXCLUDED_FILES = [ '.', '..', @@ -35,8 +35,11 @@ class My '_disabled', ]; + /** @var string This module required php version */ + public const PHP_MIN = '8.1'; + /** - * This module id + * This module id. */ public static function id(): string { @@ -44,15 +47,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 {