cleanup: remove legacy code
This commit is contained in:
parent
a71392d632
commit
b1c7b91313
5 changed files with 0 additions and 55 deletions
|
@ -73,7 +73,6 @@ class InfoCommand extends Command
|
||||||
['Queue Driver', $this->config->get('queue.default')],
|
['Queue Driver', $this->config->get('queue.default')],
|
||||||
['Session Driver', $this->config->get('session.driver')],
|
['Session Driver', $this->config->get('session.driver')],
|
||||||
['Filesystem Driver', $this->config->get('filesystems.default')],
|
['Filesystem Driver', $this->config->get('filesystems.default')],
|
||||||
['Default Theme', $this->config->get('themes.active')],
|
|
||||||
['Proxies', $this->config->get('trustedproxies.proxies')],
|
['Proxies', $this->config->get('trustedproxies.proxies')],
|
||||||
], 'compact');
|
], 'compact');
|
||||||
|
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Pterodactyl\Extensions\Facades;
|
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Facade;
|
|
||||||
|
|
||||||
class Theme extends Facade
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
protected static function getFacadeAccessor()
|
|
||||||
{
|
|
||||||
return 'extensions.themes';
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Pterodactyl\Extensions\Themes;
|
|
||||||
|
|
||||||
class Theme
|
|
||||||
{
|
|
||||||
public function js($path)
|
|
||||||
{
|
|
||||||
return sprintf('<script src="%s"></script>' . PHP_EOL, $this->getUrl($path));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function css($path)
|
|
||||||
{
|
|
||||||
return sprintf('<link media="all" type="text/css" rel="stylesheet" href="%s"/>' . PHP_EOL, $this->getUrl($path));
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function getUrl($path)
|
|
||||||
{
|
|
||||||
return '/themes/pterodactyl/' . ltrim($path, '/');
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -51,20 +51,4 @@ class Utilities
|
||||||
sprintf('%s %s %s * %s', $minute, $hour, $dayOfMonth, $dayOfWeek)
|
sprintf('%s %s %s * %s', $minute, $hour, $dayOfMonth, $dayOfWeek)
|
||||||
)->getNextRunDate());
|
)->getNextRunDate());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $name
|
|
||||||
* @param mixed $default
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public static function checked(string $name, $default)
|
|
||||||
{
|
|
||||||
$errors = session('errors');
|
|
||||||
|
|
||||||
if (isset($errors) && $errors instanceof ViewErrorBag && $errors->any()) {
|
|
||||||
return old($name) ? 'checked' : '';
|
|
||||||
}
|
|
||||||
|
|
||||||
return ($default) ? 'checked' : '';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -234,7 +234,6 @@ return [
|
||||||
'Schema' => Illuminate\Support\Facades\Schema::class,
|
'Schema' => Illuminate\Support\Facades\Schema::class,
|
||||||
'Session' => Illuminate\Support\Facades\Session::class,
|
'Session' => Illuminate\Support\Facades\Session::class,
|
||||||
'Storage' => Illuminate\Support\Facades\Storage::class,
|
'Storage' => Illuminate\Support\Facades\Storage::class,
|
||||||
'Theme' => Pterodactyl\Extensions\Facades\Theme::class,
|
|
||||||
'URL' => Illuminate\Support\Facades\URL::class,
|
'URL' => Illuminate\Support\Facades\URL::class,
|
||||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||||
'View' => Illuminate\Support\Facades\View::class,
|
'View' => Illuminate\Support\Facades\View::class,
|
||||||
|
|
Loading…
Reference in a new issue