Controler/home cont.php
From Genitura
<?php
Class home_cont extends private_area
{
// defines page who need authentification
private $access_rules = array('*');
public function index()
{
include MODEL.'task.php';
$list = task::list_active();
print_r($list);
$html = & new Template('home');
$template = & new Template('task_list');
$template->set("list",$list);
$template->set("title","T&aflex;ches actives");
$html->set("content",$template);
echo $html->fetch();
}
}
?>
