2015-05-01 20:47:11 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Module\Example;
|
|
|
|
use \FuzeWorks\Module;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sections module, see usage documentation
|
|
|
|
* @author TechFuze
|
|
|
|
*/
|
|
|
|
class Main extends Module {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the module and registers the events
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function onLoad() {
|
2015-07-07 12:09:38 +00:00
|
|
|
// Do Something
|
2015-05-01 20:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|