942285cab3
I also added a "legacy" extensionlibrary for backwards compatability for now.
35 lines
1 KiB
PHP
35 lines
1 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin\Extensions\␀id␀;
|
|
|
|
use Illuminate\View\View;
|
|
use Illuminate\View\Factory as ViewFactory;
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
use Pterodactyl\Services\Helpers\SoftwareVersionService;
|
|
|
|
use Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Admin\BlueprintAdminLibrary;
|
|
|
|
class ␀id␀ExtensionController extends Controller
|
|
{
|
|
/**
|
|
* ␀id␀ExtensionController constructor.
|
|
*/
|
|
public function __construct(
|
|
private BlueprintExtensionLibrary $blueprint,
|
|
private SoftwareVersionService $version,
|
|
private ViewFactory $view
|
|
){}
|
|
|
|
/**
|
|
* Return the extension index view.
|
|
*/
|
|
public function index(): View
|
|
{
|
|
$rootPath = "/admin/extensions/␀id␀";
|
|
return $this->view->make('admin.extensions.␀id␀.index', [
|
|
'blueprint' => $this->blueprint,
|
|
'version' => $this->version,
|
|
'root' => $rootPath
|
|
]);
|
|
}
|
|
}
|