Abel Hoogeveen
c5318a2e99
\FuzeWorks for Core classes \Controller for controller classes \Model for model classes \Module for modules Also did the following changes: - DatabaseModel now loads the database module as a dependency - DatabaseModel is no longer abstract because of ModelServer - Implemented a new mechanism for model types in the name of a ModelServer. This interface requires a Model Type Server to return a Model parent class based on a given type - Added a backtrace to the logger class for easy and fast debugging And that was it for this commit
23 lines
633 B
PHP
23 lines
633 B
PHP
<?php
|
|
return array(
|
|
|
|
'module_class' => 'Module\Sections\Main',
|
|
'module_file' => 'class.sections.php',
|
|
'module_name' => 'Sections',
|
|
|
|
'abstract' => false,
|
|
'dependencies' => array(),
|
|
'events' => array('routerRouteEvent', 'layoutLoadEvent', 'modelLoadEvent'),
|
|
|
|
'name' => 'FuzeWorks Sections',
|
|
'description' => 'Submodules for FuzeWorks',
|
|
'author' => 'TechFuze',
|
|
'version' => '1.0.0',
|
|
'website' => 'http://fuzeworks.techfuze.net/',
|
|
|
|
'date_created' => '29-04-2015',
|
|
'date_updated' => '29-04-2015',
|
|
|
|
'enabled' => true,
|
|
);
|