2021-08-19 14:00:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace ViewComponents\Config;
|
|
|
|
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
|
|
|
|
class ViewComponents extends BaseConfig
|
|
|
|
{
|
2021-09-02 16:34:25 +00:00
|
|
|
public string $componentsDirectory = 'Components';
|
2021-09-02 10:01:20 +00:00
|
|
|
|
|
|
|
/**
|
2021-09-02 16:34:25 +00:00
|
|
|
* Paths to look into for local components. Will look for the $componentsDirectory inside.
|
2021-09-02 10:01:20 +00:00
|
|
|
*
|
2021-09-02 16:34:25 +00:00
|
|
|
* @var string[]
|
2021-09-02 10:01:20 +00:00
|
|
|
*/
|
2021-09-02 16:34:25 +00:00
|
|
|
public array $lookupPaths = [];
|
2021-09-02 10:01:20 +00:00
|
|
|
|
2021-09-02 16:34:25 +00:00
|
|
|
public string $defaultLookupPath = APPPATH . 'Views/';
|
2021-08-19 14:00:14 +00:00
|
|
|
}
|