mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-23 22:14:41 +00:00
95 lines
2.2 KiB
PHP
95 lines
2.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
* @link http://www.pocketmine.net/
|
|
*
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace pocketmine\plugin;
|
|
|
|
use pocketmine\utils\Utils;
|
|
use function count;
|
|
use function file;
|
|
use function implode;
|
|
use function is_file;
|
|
use function strlen;
|
|
use function strpos;
|
|
use function substr;
|
|
use const FILE_IGNORE_NEW_LINES;
|
|
use const FILE_SKIP_EMPTY_LINES;
|
|
|
|
/**
|
|
* Simple script loader, not for plugin development
|
|
* For an example see https://gist.github.com/shoghicp/516105d470cf7d140757
|
|
*/
|
|
class ScriptPluginLoader implements PluginLoader{
|
|
|
|
public function canLoadPlugin(string $path) : bool{
|
|
$ext = ".php";
|
|
return is_file($path) and substr($path, -strlen($ext)) === $ext;
|
|
}
|
|
|
|
/**
|
|
* Loads the plugin contained in $file
|
|
*/
|
|
public function loadPlugin(string $file) : void{
|
|
include_once $file;
|
|
}
|
|
|
|
/**
|
|
* Gets the PluginDescription from the file
|
|
*/
|
|
public function getPluginDescription(string $file) : ?PluginDescription{
|
|
$content = @file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
|
if($content === false){
|
|
return null;
|
|
}
|
|
|
|
$insideHeader = false;
|
|
|
|
$docCommentLines = [];
|
|
foreach($content as $line){
|
|
if(!$insideHeader){
|
|
if(strpos($line, "/**") !== false){
|
|
$insideHeader = true;
|
|
}else{
|
|
continue;
|
|
}
|
|
}
|
|
|
|
$docCommentLines[] = $line;
|
|
|
|
if(strpos($line, "*/") !== false){
|
|
break;
|
|
}
|
|
}
|
|
|
|
$data = Utils::parseDocComment(implode("\n", $docCommentLines));
|
|
if(count($data) !== 0){
|
|
return new PluginDescription($data);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public function getAccessProtocol() : string{
|
|
return "";
|
|
}
|
|
}
|