11 lines
314 B
PHP
Executable file
11 lines
314 B
PHP
Executable file
<?php
|
|
|
|
//register modules -> need to have the Module Class at parent with the init function ;)
|
|
$modules = [
|
|
'role' => Modules\RoleModule::class
|
|
];
|
|
|
|
// register controllers that can handle templates ;) need to have a render function for this
|
|
$controllers = [
|
|
'test' => \Controllers\TestController::class,
|
|
]; |