2012-01-13 11:58:06 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* MiniMVC
|
|
|
|
*
|
|
|
|
* Convention-based micro-framework for PHP
|
|
|
|
*
|
2012-04-26 16:26:50 -04:00
|
|
|
* @package miniMVC
|
2012-01-13 11:58:06 -05:00
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2011 - 2012
|
|
|
|
* @link https://github.com/timw4mail/miniMVC
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Model template class
|
2012-04-26 16:26:50 -04:00
|
|
|
*
|
|
|
|
* @package miniMVC
|
|
|
|
* @subpackage App
|
2012-01-13 11:58:06 -05:00
|
|
|
*/
|
|
|
|
class Welcome_Model extends MM_Model{
|
|
|
|
|
2012-04-26 16:26:50 -04:00
|
|
|
/**
|
|
|
|
* Initialize the model
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-01-13 11:58:06 -05:00
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
}
|