. * * @author TechFuze * @copyright Copyright (c) 2013 - 2015, Techfuze. (http://techfuze.net) * @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/) * @license http://opensource.org/licenses/GPL-3.0 GPLv3 License * @link http://fuzeworks.techfuze.net * @since Version 0.0.1 * @version Version 0.0.1 */ namespace Module\Example; use \FuzeWorks\Module; /** * Example module. * * Use this is a reference to create new modules. * @package net.techfuze.fuzeworks.example * @author Abel Hoogeveen * @copyright Copyright (c) 2013 - 2015, Techfuze. (http://techfuze.net) */ class Main extends Module { /** * Loads the module and registers the events * @access public */ public function onLoad() { // Do Something } /** * Test method that can be called * @return String Example text */ public function test() { return "It works!"; } } ?>