From 833325103bbb9e6c83cf40ca03e382f4a79c15e9 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:25:06 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/My.php b/src/My.php index c8244c2..f1be029 100644 --- a/src/My.php +++ b/src/My.php @@ -17,15 +17,15 @@ namespace Dotclear\Plugin\comListe; use dcCore; /** - * Plugin definitions + * This module definitions. */ class My { - /** @var string Required php version */ + /** @var string Required php version */ public const PHP_MIN = '7.4'; /** - * This module id + * This module id. */ public static function id(): string { @@ -33,15 +33,17 @@ 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 directory path + * This module path. */ public static function path(): string { @@ -49,7 +51,7 @@ class My } /** - * Check php version + * Check this module PHP version compliant. */ public static function phpCompliant(): bool {