find . -type f -exec sed -i 's/Pterodactyl/App/g' {} +
This commit is contained in:
parent
fc219e9908
commit
5202acba56
9 changed files with 27 additions and 27 deletions
|
@ -1,11 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Controllers;
|
namespace App\BlueprintFramework\Controllers;
|
||||||
|
|
||||||
use Pterodactyl\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use Illuminate\Http\RedirectResponse;
|
use Illuminate\Http\RedirectResponse;
|
||||||
use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
|
use App\Http\Requests\Admin\AdminFormRequest;
|
||||||
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
use App\Contracts\Repository\SettingsRepositoryInterface;
|
||||||
|
|
||||||
class ExtensionConfigurationController extends Controller
|
class ExtensionConfigurationController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -15,8 +15,8 @@ class ExtensionConfigurationController extends Controller
|
||||||
public function __construct(private SettingsRepositoryInterface $settings,) {}
|
public function __construct(private SettingsRepositoryInterface $settings,) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
* @throws \App\Exceptions\Model\DataValidationException
|
||||||
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
* @throws \App\Exceptions\Repository\RecordNotFoundException
|
||||||
*/
|
*/
|
||||||
public function update(ExtensionConfigurationRequest $request): RedirectResponse
|
public function update(ExtensionConfigurationRequest $request): RedirectResponse
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Controllers;
|
namespace App\BlueprintFramework\Controllers;
|
||||||
|
|
||||||
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
use App\Http\Requests\Api\Client\ClientApiRequest;
|
||||||
use Pterodactyl\Http\Controllers\Api\Client\ClientApiController;
|
use App\Http\Controllers\Api\Client\ClientApiController;
|
||||||
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
use App\Contracts\Repository\SettingsRepositoryInterface;
|
||||||
|
|
||||||
class ExtensionRouteController extends ClientApiController
|
class ExtensionRouteController extends ClientApiController
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework;
|
namespace App\BlueprintFramework;
|
||||||
|
|
||||||
use Illuminate\Console\Scheduling\Schedule;
|
use Illuminate\Console\Scheduling\Schedule;
|
||||||
use File;
|
use File;
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
* @since alpha
|
* @since alpha
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Admin;
|
namespace App\BlueprintFramework\Libraries\ExtensionLibrary\Admin;
|
||||||
|
|
||||||
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
use App\Contracts\Repository\SettingsRepositoryInterface;
|
||||||
|
|
||||||
class BlueprintAdminLibrary
|
class BlueprintAdminLibrary
|
||||||
{
|
{
|
||||||
|
@ -69,7 +69,7 @@ class BlueprintAdminLibrary
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display a notification on the Pterodactyl admin panel (on next page load).
|
* Display a notification on the App admin panel (on next page load).
|
||||||
*
|
*
|
||||||
* @param string $text Notification contents
|
* @param string $text Notification contents
|
||||||
* @return void Nothing is returned
|
* @return void Nothing is returned
|
||||||
|
@ -82,7 +82,7 @@ class BlueprintAdminLibrary
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display a notification on the Pterodactyl admin panel and refresh the page after a certain delay.
|
* Display a notification on the App admin panel and refresh the page after a certain delay.
|
||||||
*
|
*
|
||||||
* @param string $delay Refresh after (in seconds)
|
* @param string $delay Refresh after (in seconds)
|
||||||
* @param string $text Notification contents
|
* @param string $text Notification contents
|
||||||
|
@ -97,7 +97,7 @@ class BlueprintAdminLibrary
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display a notification on the Pterodactyl admin panel and refresh the page instantly.
|
* Display a notification on the App admin panel and refresh the page instantly.
|
||||||
* Behaves the same as calling `notifyAfter()` with a delay of zero.
|
* Behaves the same as calling `notifyAfter()` with a delay of zero.
|
||||||
*
|
*
|
||||||
* @param string $text Notification contents
|
* @param string $text Notification contents
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
* @since alpha
|
* @since alpha
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Client;
|
namespace App\BlueprintFramework\Libraries\ExtensionLibrary\Client;
|
||||||
|
|
||||||
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
use App\Contracts\Repository\SettingsRepositoryInterface;
|
||||||
|
|
||||||
class BlueprintClientLibrary
|
class BlueprintClientLibrary
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
* @since beta
|
* @since beta
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Libraries\ExtensionLibrary\Console;
|
namespace App\BlueprintFramework\Libraries\ExtensionLibrary\Console;
|
||||||
|
|
||||||
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
use App\Contracts\Repository\SettingsRepositoryInterface;
|
||||||
|
|
||||||
class BlueprintConsoleLibrary
|
class BlueprintConsoleLibrary
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Services\ConfigService;
|
namespace App\BlueprintFramework\Services\ConfigService;
|
||||||
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
|
use App\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
|
||||||
|
|
||||||
class BlueprintConfigService
|
class BlueprintConfigService
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Services\PlaceholderService;
|
namespace App\BlueprintFramework\Services\PlaceholderService;
|
||||||
|
|
||||||
class BlueprintPlaceholderService
|
class BlueprintPlaceholderService
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Pterodactyl\BlueprintFramework\Services\TelemetryService;
|
namespace App\BlueprintFramework\Services\TelemetryService;
|
||||||
use Pterodactyl\Contracts\Repository\SettingsRepositoryInterface;
|
use App\Contracts\Repository\SettingsRepositoryInterface;
|
||||||
use Pterodactyl\BlueprintFramework\Services\ConfigService\BlueprintConfigService;
|
use App\BlueprintFramework\Services\ConfigService\BlueprintConfigService;
|
||||||
use Pterodactyl\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
|
use App\BlueprintFramework\Services\PlaceholderService\BlueprintPlaceholderService;
|
||||||
|
|
||||||
class BlueprintTelemetryService
|
class BlueprintTelemetryService
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue