harmonize My class

This commit is contained in:
Jean-Christian Paul Denis 2023-05-08 10:43:31 +02:00
parent 1bcd04e3a2
commit 7f281007e6
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -16,12 +16,12 @@ namespace Dotclear\Plugin\pacKman;
use dcCore; use dcCore;
/**
* This module definitions.
*/
class My class My
{ {
/** @var string Required php version */ /** @var array Excluded files */
public const PHP_MIN = '8.1';
/** @var array Excluded files */
public const EXCLUDED_FILES = [ public const EXCLUDED_FILES = [
'.', '.',
'..', '..',
@ -35,8 +35,11 @@ class My
'_disabled', '_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 public static function id(): string
{ {
@ -44,15 +47,25 @@ class My
} }
/** /**
* This module name * This module name.
*/ */
public static function name(): string 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 public static function phpCompliant(): bool
{ {