harmonize My class

master
Jean-Christian Paul Denis 2023-05-08 10:23:01 +02:00
parent 63ab83235b
commit 99614a87ff
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 14 additions and 4 deletions

View File

@ -17,11 +17,11 @@ namespace Dotclear\Plugin\arlequin;
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';
/**
@ -37,11 +37,21 @@ class My
*/
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
{