pickles/boilerplate/modules/home.php
2011-04-16 22:38:14 -04:00

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');
}
}
?>