Abel Hoogeveen
b10561df6d
Also moved the NotifierEvent into another file, the event abstract and gave the interpret model a namespace.
22 lines
577 B
PHP
22 lines
577 B
PHP
<?php
|
|
return array(
|
|
|
|
'module_class' => 'Module\DatabaseModel',
|
|
'module_file' => 'class.model.php',
|
|
'module_name' => 'databasemodel',
|
|
|
|
'abstract' => false,
|
|
'dependencies' => array('techfuze/database'),
|
|
|
|
'name' => 'DatabaseModel',
|
|
'description' => 'Abstract type for easy database queries',
|
|
'author' => 'TechFuze',
|
|
'version' => '1.0.0',
|
|
'website' => 'http://fuzeworks.techfuze.net/',
|
|
|
|
'date_created' => '26-02-2015',
|
|
'date_updated' => '26-02-2015',
|
|
|
|
'enabled' => true,
|
|
);
|