venom/base/module.base.php

11 lines
314 B
PHP
Raw Normal View History

2020-03-28 20:11:51 +01:00
<?php
//register modules -> need to have the Module Class at parent with the init function ;)
2020-11-18 17:50:01 +01:00
$modules = [
'role' => Modules\RoleModule::class
];
2020-03-28 20:11:51 +01:00
// register controllers that can handle templates ;) need to have a render function for this
$controllers = [
'test' => \Controllers\TestController::class,
];