mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 08:45:45 +00:00
25 lines
458 B
PHP
25 lines
458 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ViewThemes\Config;
|
||
|
|
||
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
||
|
class Themes extends BaseConfig
|
||
|
{
|
||
|
public string $themesDirectory = ROOTPATH . 'themes';
|
||
|
|
||
|
public string $manifestFilename = 'manifest.json';
|
||
|
|
||
|
/**
|
||
|
* @var array<string, string>
|
||
|
*/
|
||
|
public array $themes = [
|
||
|
'app' => 'cp_app',
|
||
|
'admin' => 'cp_admin',
|
||
|
'install' => 'cp_install',
|
||
|
'auth' => 'cp_auth',
|
||
|
];
|
||
|
}
|