19 lines
402 B
PHP
19 lines
402 B
PHP
<?php
|
|
|
|
class home extends Module
|
|
{
|
|
public function __default()
|
|
{
|
|
// This is where your business logic lives
|
|
|
|
// You can create model objects like $model = new SampleModel();
|
|
|
|
// You can talk to the default database via $this->db
|
|
|
|
// You could even do nothing and delete this file
|
|
|
|
// If you have data you want to get from here to the template, just return array('my' => 'data');
|
|
}
|
|
}
|
|
|
|
?>
|