mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
21 lines
406 B
PHP
21 lines
406 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Config;
|
|
|
|
use ViewComponents\Config\ViewComponents as ViewComponentsConfig;
|
|
|
|
class ViewComponents extends ViewComponentsConfig
|
|
{
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
public array $lookupPaths = [
|
|
ROOTPATH . 'themes/cp_app/',
|
|
ROOTPATH . 'themes/cp_admin/',
|
|
ROOTPATH . 'themes/cp_auth/',
|
|
ROOTPATH . 'themes/cp_install/',
|
|
];
|
|
}
|