2023-03-11 14:53:06 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @brief dcLog, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Tomtom and Contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Dotclear\Plugin\dcLog;
|
|
|
|
|
|
|
|
use dcCore;
|
|
|
|
|
|
|
|
class My
|
|
|
|
{
|
2023-03-19 21:50:56 +00:00
|
|
|
/**
|
|
|
|
* @var string PHP min version
|
|
|
|
*/
|
|
|
|
public const PHP_MIN = '8.1';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string Admin list ID
|
|
|
|
*/
|
2023-03-11 14:53:06 +00:00
|
|
|
public const BACKEND_LIST_ID = 'dcloglist';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This module id
|
|
|
|
*/
|
|
|
|
public static function id(): string
|
|
|
|
{
|
|
|
|
return basename(dirname(__DIR__));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This module name
|
|
|
|
*/
|
|
|
|
public static function name(): string
|
|
|
|
{
|
|
|
|
return __((string) dcCore::app()->plugins->moduleInfo(self::id(), 'name'));
|
|
|
|
}
|
2023-03-19 21:50:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check php version
|
|
|
|
*/
|
|
|
|
public static function phpCompliant(): bool
|
|
|
|
{
|
|
|
|
return version_compare(phpversion(), self::PHP_MIN, '>=');
|
|
|
|
}
|
2023-03-11 14:53:06 +00:00
|
|
|
}
|