mirror of
https://github.com/Mibew/mibew.git
synced 2024-11-15 00:24:12 +03:00
Fix PHP 8.1 compatibility issue with the inherited static variable
This commit is contained in:
parent
4f05231b04
commit
ca090638da
@ -42,6 +42,12 @@ abstract class AbstractPlugin
|
||||
*/
|
||||
protected $weight = 0;
|
||||
|
||||
/**
|
||||
* Path to plugin's files
|
||||
* @var string
|
||||
*/
|
||||
private $path = '';
|
||||
|
||||
/**
|
||||
* Default plugin constructor.
|
||||
*
|
||||
@ -72,9 +78,8 @@ abstract class AbstractPlugin
|
||||
*/
|
||||
public function getFilesPath()
|
||||
{
|
||||
static $path = false;
|
||||
|
||||
if ($path === false) {
|
||||
if ($this->path === '') {
|
||||
// Get full name of the file with the current plugin class
|
||||
$reflection = new \ReflectionClass($this);
|
||||
$file_path = $reflection->getFileName();
|
||||
@ -90,10 +95,10 @@ abstract class AbstractPlugin
|
||||
trim($file_path, DIRECTORY_SEPARATOR)
|
||||
);
|
||||
array_pop($path_parts);
|
||||
$path = implode(DIRECTORY_SEPARATOR, $path_parts);
|
||||
$this->path = implode(DIRECTORY_SEPARATOR, $path_parts);
|
||||
}
|
||||
|
||||
return $path;
|
||||
return $this->path;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user