mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8d077203d4
* API Implement support for public/ webroot folder * Bugfixes and refactor based on feedback
12 lines
178 B
PHP
12 lines
178 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View;
|
|
|
|
class PublicThemes implements ThemeList
|
|
{
|
|
public function getThemes()
|
|
{
|
|
return PUBLIC_DIR ? ['/' . PUBLIC_DIR] : [];
|
|
}
|
|
}
|