Ejemplo n.º 1
0
 public function index()
 {
     $this->set('hubs', HubData::get_hub());
     $this->render('hub/index.tpl');
 }
Ejemplo n.º 2
0
 public function delete_hub()
 {
     $hubid = $_GET[hubid];
     HubData::delete_hub($hubid);
     $this->set('hub', HubData::get_hub());
     $this->show('hub/hub_index.tpl');
 }