mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
22 lines
492 B
PHP
22 lines
492 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Extensions\Themes;
|
|
|
|
class Theme
|
|
{
|
|
public function js($path): string
|
|
{
|
|
return sprintf('<script src="%s"></script>' . PHP_EOL, $this->getUrl($path));
|
|
}
|
|
|
|
public function css($path): string
|
|
{
|
|
return sprintf('<link media="all" type="text/css" rel="stylesheet" href="%s"/>' . PHP_EOL, $this->getUrl($path));
|
|
}
|
|
|
|
protected function getUrl($path): string
|
|
{
|
|
return '/themes/pterodactyl/' . ltrim($path, '/');
|
|
}
|
|
}
|