SuperSmash_Framework/applications/start/models/introduction.php

17 lines
463 B
PHP
Raw Normal View History

2018-12-19 20:44:16 +01:00
<?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 />
');
}
}
?>