2012-06-25 21:18:23 -07:00

9 lines
223 B
PHP

<?php
class Controller_home extends Cana_Controller {
public function init() {
$r = Restaurant::q('select * from restaurant where active=1');
Cana::view()->restaurants = $r;
Cana::view()->display('home/index');
}
}