From 0badada4f6712e9443a7335eafc7592bdbdd54fc Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:51:20 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/My.php b/src/My.php index ab6211e..9286391 100644 --- a/src/My.php +++ b/src/My.php @@ -17,15 +17,15 @@ namespace Dotclear\Plugin\tweakStores; use dcCore; /** - * Plugin definitions + * This module definitions. */ class My { - /** @var string Required php version */ + /** @var string This module required php version */ public const PHP_MIN = '8.1'; /** - * This module id + * This module id. */ public static function id(): string { @@ -33,15 +33,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 {