mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 23:36:44 +02:00
- replace some helper components and forms with class components in the ui - create viewcomponents service and load the component function to be used in views
16 lines
371 B
PHP
16 lines
371 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ViewComponents\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class ViewComponents extends BaseConfig
|
|
{
|
|
public string $classComponentsNamespace = APP_NAMESPACE . '\View\Components';
|
|
|
|
public string $classComponentsPath = APPPATH . 'View/Components';
|
|
|
|
public string $componentsViewPath = APPPATH . 'Views/components';
|
|
}
|