Initial commit

This commit is contained in:
NightBits
2018-12-19 20:44:16 +01:00
parent b680b82039
commit 878eda33b8
92 changed files with 5819 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
class IntroductionModel extends System\SuperSmash\Model {
// Create the constructor
public function __construct() {
parent::__construct();
}
public function introduction() {
return array('introductionMessage' =>
'Hello and welcome to the SuperSmash Framework! <br />
This framework will help you while developing your application <br /><br />
');
}
}
?>