From 3ccacbfb1970d6290b8e6b899505d365bf5dc395 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 8 May 2023 10:33:23 +0200 Subject: [PATCH] harmonize My class --- src/My.php | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/src/My.php b/src/My.php index 407401f..4043e14 100644 --- a/src/My.php +++ b/src/My.php @@ -17,17 +17,14 @@ namespace Dotclear\Plugin\enhancePostContent; use dcCore; /** - * Plugin definitions + * This module definitions. */ class My { - /** @var string Required php version */ - public const PHP_MIN = '8.1'; - - /** @var string Plugin table name */ + /** @var string Plugin table name */ public const TABLE_NAME = 'epc'; - /** @var array Distributed filters */ + /** @var array Distributed filters */ public const DEFAULT_FILTERS = [ Filter\EpcFilterTag::class, Filter\EpcFilterSearch::class, @@ -41,8 +38,11 @@ class My Filter\EpcFilterTwitter::class, ]; + /** @var string This module required php version */ + public const PHP_MIN = '8.1'; + /** - * This module id + * This module id. */ public static function id(): string { @@ -50,15 +50,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 {