harmonize My class

master
Jean-Christian Paul Denis 2023-05-08 10:50:59 +02:00
parent f2baa97680
commit 212324642e
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 18 additions and 8 deletions

View File

@ -21,14 +21,14 @@ use dcCore;
*/ */
class My class My
{ {
/** @var string Required php version */ /** @var string Locales folder name */
public const PHP_MIN = '8.1';
/** @var string Locales folder name */
public const LOCALES_FOLDER = 'locales'; public const LOCALES_FOLDER = 'locales';
/** @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
{ {
@ -36,15 +36,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
{ {