Update blueprint/extensions/blueprint/private/build/extensions/controller.build
This commit is contained in:
parent
49b319a4b6
commit
d8ec5aa87a
1 changed files with 35 additions and 35 deletions
|
@ -1,35 +1,35 @@
|
|||
<?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 as BlueprintExtensionLibrary;
|
||||
|
||||
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
|
||||
]);
|
||||
}
|
||||
}
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin\Extensions\[id];
|
||||
|
||||
use Illuminate\View\View;
|
||||
use Illuminate\View\Factory as ViewFactory;
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Services\Helpers\SoftwareVersionService;
|
||||
|
||||
use App\BlueprintFramework\Libraries\ExtensionLibrary\Admin\BlueprintAdminLibrary as BlueprintExtensionLibrary;
|
||||
|
||||
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
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue