1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00
Pterodactyl-Panel/config/themes.php

22 lines
549 B
PHP
Raw Normal View History

2016-02-05 00:28:14 +01:00
<?php
return [
'enabled' => true,
2016-02-06 05:27:43 +01:00
'themes_path' => realpath(base_path('resources/themes')),
2016-02-05 00:28:14 +01:00
'asset_not_found' => 'LOG_ERROR',
2016-02-06 22:24:08 +01:00
'active' => ENV('APP_THEME', 'default'),
2016-02-05 00:28:14 +01:00
'themes' => [
'default' => [
'extends' => null,
'views-path' => 'default',
'asset-path' => 'themes/default',
],
'pterodactyl' => [
'extends' => null,
'views-path' => 'pterodactyl',
'asset-path' => 'themes/pterodactyl',
],
2016-02-05 00:28:14 +01:00
],
2016-02-06 05:27:43 +01:00
];