forked from Alex/Pterodactyl-Panel
22 lines
468 B
PHP
22 lines
468 B
PHP
<?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, '/');
|
|
}
|
|
}
|