castopod/app/Libraries/ViewComponents/Config/ViewComponents.php
Yassine Doghri 7a276764e6 feat(themes): add ViewThemes library to set views in root themes folder
app, admin, install and authentication views are now located in root themes/ folder
2021-12-29 11:54:52 +00:00

22 lines
438 B
PHP

<?php
declare(strict_types=1);
namespace ViewComponents\Config;
use CodeIgniter\Config\BaseConfig;
class ViewComponents extends BaseConfig
{
public string $componentsDirectory = 'Components';
/**
* Paths to look into for local components. Will look for the $componentsDirectory inside.
*
* @var string[]
*/
public array $lookupPaths = [];
public string $defaultLookupPath = APPPATH . 'Views/';
}