mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
12 lines
160 B
PHP
12 lines
160 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View;
|
|
|
|
class PublicThemes implements ThemeList
|
|
{
|
|
public function getThemes()
|
|
{
|
|
return ['/' . PUBLIC_DIR];
|
|
}
|
|
}
|