Example #1
0
 function beforeroute()
 {
     //list of categories
     $cats = new Cat($this->db);
     $this->f3->set('cs', $cats->all());
     //item count (menu)
     $items = new Item($this->db);
     $nb = $items->itemcount();
     $this->f3->set('cgall', $nb);
     //category menu
     $cgs = new CatGroup($this->db);
     $this->f3->set('cgs', $cgs->all());
 }